import type { LinksFunction } from "@remix-run/node" import { Links, Meta, Outlet, Scripts, ScrollRestoration, useRouteError, } from "@remix-run/react" import { captureRemixErrorBoundaryError } from "@sentry/remix" import { Loader2 } from "lucide-react" import { Provider } from "urql" import { client } from "~/lib/urql" import stylesheet from "~/tailwind.css?url" export const links: LinksFunction = () => [ { rel: "stylesheet", href: stylesheet }, ] export function Layout({ children }: { children: React.ReactNode }) { return ( {children} ) } export const ErrorBoundary = () => { const error = useRouteError() captureRemixErrorBoundaryError(error) return
Something went wrong
} export default function App() { return ( ) } export function HydrateFallback() { return (
) }