import { Links, Meta, Outlet, Scripts, ScrollRestoration, } from "@remix-run/react" import React from "react" import { ManifestLink } from "@remix-pwa/sw" import { LinksFunction } from "@remix-run/node" import styles from "./styles/styles.css?url" export const links: LinksFunction = () => [{ rel: "stylesheet", href: styles }] export function Layout({ children }: { children: React.ReactNode }) { return ( {children} ) } export default function App() { return }