import { Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration, } from "@remix-run/react"; import type {LinksFunction} from '@remix-run/node'; import * as React from 'react'; import globalStylesheetUrl from './style.css'; export const links: LinksFunction = () => { return [{ rel: "stylesheet", href: globalStylesheetUrl }]; }; const App = () => (