import React, {type ReactNode} from 'react'; import Navbar from './Navbar'; interface LayoutProps { children: ReactNode; } const Layout: React.FC = ({ children }) => { return ( <>
{children}
); }; export default Layout;