import { Links, Meta, Outlet, Scripts, ScrollRestoration } from 'react-router'; import type { Route } from './+types/root'; import stylesheet from './app.css?url'; export const links: Route.LinksFunction = () => [{ rel: 'stylesheet', href: stylesheet }]; export const Layout = ({ children }: { children: React.ReactNode }) => { return ( {children} ); }; const App = () => { return ; }; export default App;