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