You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Layout.tsx 248B

12345678910111213141516
  1. import Navbar from '../navbar/Navbar';
  2. interface IProps {
  3. children: React.ReactNode;
  4. }
  5. const Layout: React.FC<IProps> = (props) => {
  6. return (
  7. <>
  8. <Navbar />
  9. <main>{props.children}</main>
  10. </>
  11. );
  12. };
  13. export default Layout;