index.tsx 285 B

12345678910111213
  1. import { FunctionComponent } from 'react';
  2. import styles from './header.module.css';
  3. interface HeaderProps { };
  4. const Header: FunctionComponent<HeaderProps> = ({ children }) => {
  5. return (
  6. <div className={styles.headerContainer}>{children}</div>
  7. );
  8. };
  9. export default Header;