From 18308a22879dc9143a03bcbe53cf0c5e8e49ee1f Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 27 Jul 2024 01:17:37 +0900 Subject: remix --- frontend/app/root.tsx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 frontend/app/root.tsx (limited to 'frontend/app/root.tsx') diff --git a/frontend/app/root.tsx b/frontend/app/root.tsx new file mode 100644 index 0000000..9768f45 --- /dev/null +++ b/frontend/app/root.tsx @@ -0,0 +1,35 @@ +import type { LinksFunction } from "@remix-run/node"; +import { + Links, + Meta, + Outlet, + Scripts, + ScrollRestoration, +} from "@remix-run/react"; +import "./tailwind.css"; + +export const links: LinksFunction = () => { + return [{ rel: "icon", href: "/favicon.svg" }]; +}; + +export function Layout({ children }: { children: React.ReactNode }) { + return ( + + + + + + + + + {children} + + + + + ); +} + +export default function App() { + return ; +} -- cgit v1.2.3-70-g09d2