🔧 config: src folders structure

:%s
This commit is contained in:
lytrankieio123
2021-08-20 09:29:58 +07:00
parent 0f82dfdcba
commit d3c94cfb79
19 changed files with 263 additions and 50 deletions

View File

@@ -0,0 +1,15 @@
import { FC, useRef, useEffect } from 'react'
import s from './Header.module.css'
interface Props {
className?: string
children?: any
}
const Header: FC<Props> = ({ }) => {
return (
<div className={s.header}>This is Header</div>
)
}
export default Header