import type { LinksFunction, MetaFunction } from "@remix-run/node" import { Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration, } from "@remix-run/react" import styles from "./styles.css" export const meta: MetaFunction = () => [{ title: "New Remix App" }] export const links: LinksFunction = () => [{ rel: "stylesheet", href: styles }] export default function App() { return ( ) }