portal-dashboard/app/root.tsx

54 lines
1.2 KiB
TypeScript
Raw Normal View History

2024-03-05 16:56:17 +00:00
import {
2024-03-13 13:38:01 +00:00
Links,
Meta,
Outlet,
Scripts,
ScrollRestoration,
2024-03-05 16:56:17 +00:00
} from "@remix-run/react";
import stylesheet from "./tailwind.css?url";
import type { LinksFunction } from "@remix-run/node";
2024-03-05 16:56:17 +00:00
// Supports weights 200-800
import '@fontsource-variable/manrope';
2024-03-13 13:38:01 +00:00
import {Refine} from "@refinedev/core";
import {authProvider} from "~/data/auth-provider.js";
import routerProvider from "@refinedev/remix-router";
2024-03-05 16:56:17 +00:00
export const links: LinksFunction = () => [
{ rel: "stylesheet", href: stylesheet },
];
2024-03-13 13:38:01 +00:00
export function Layout({children}: { children: React.ReactNode }) {
return (
<html lang="en">
<head>
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<Meta/>
<Links/>
</head>
<body>
2024-03-05 16:56:17 +00:00
{children}
2024-03-13 13:38:01 +00:00
<ScrollRestoration/>
<Scripts/>
</body>
</html>
);
2024-03-05 16:56:17 +00:00
}
export default function App() {
2024-03-13 13:38:01 +00:00
return (
<Refine
authProvider={authProvider}
routerProvider={routerProvider}
>
<Outlet/>
</Refine>
);
2024-03-05 16:56:17 +00:00
}
export function HydrateFallback() {
2024-03-13 13:38:01 +00:00
return <p>Loading...</p>;
2024-03-05 16:56:17 +00:00
}