From 8ba1302c6b72c0c071a96fab578f777f158510d7 Mon Sep 17 00:00:00 2001 From: Juan Di Toro Date: Thu, 7 Mar 2024 15:05:31 +0100 Subject: [PATCH] idk --- app/root.tsx | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/app/root.tsx b/app/root.tsx index 02a61a8..4d7df04 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -3,19 +3,22 @@ import { Meta, Outlet, Scripts, - ScrollRestoration, -} from "@remix-run/react"; + ScrollRestoration +} from "@remix-run/react" -import stylesheet from "./tailwind.css?url"; -import { LinksFunction } from "@remix-run/node"; +import stylesheet from "./tailwind.css?url" +import { LinksFunction } from "@remix-run/node" // Supports weights 200-800 -import '@fontsource-variable/manrope'; +import "@fontsource-variable/manrope" +import { Refine } from "@refinedev/core" +import routerProvider from "@refinedev/remix-router"; +import { authProvider } from "./data/auth-provider" export const links: LinksFunction = () => [ - { rel: "stylesheet", href: stylesheet }, + { rel: "stylesheet", href: stylesheet } // { rel: "stylesheet", href: manropeStylesheet }, -]; +] export function Layout({ children }: { children: React.ReactNode }) { return ( @@ -27,18 +30,23 @@ export function Layout({ children }: { children: React.ReactNode }) { - {children} + + {children} + - ); + ) } export default function App() { - return ; + return } export function HydrateFallback() { - return

Loading...

; + return

Loading...

}