diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:28:29 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:28:29 +0900 |
| commit | 4b206bf707ef5d092ea9579fe82a06ee1d6e0337 (patch) | |
| tree | f3eb93e716cf1c6da2bccc112ce3b7cebff95222 /frontend/app/root.tsx | |
| parent | 7ccf1da2f7448d93f8209982813e4097af13fd70 (diff) | |
| parent | 3a59aa595b1674e9286f4df0035b5b1e38e6957d (diff) | |
| download | iosdc-japan-2024-albatross-4b206bf707ef5d092ea9579fe82a06ee1d6e0337.tar.gz iosdc-japan-2024-albatross-4b206bf707ef5d092ea9579fe82a06ee1d6e0337.tar.zst iosdc-japan-2024-albatross-4b206bf707ef5d092ea9579fe82a06ee1d6e0337.zip | |
Merge branch 'feat/biome'
Diffstat (limited to 'frontend/app/root.tsx')
| -rw-r--r-- | frontend/app/root.tsx | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/frontend/app/root.tsx b/frontend/app/root.tsx index 9768f45..58a06dd 100644 --- a/frontend/app/root.tsx +++ b/frontend/app/root.tsx @@ -1,35 +1,35 @@ import type { LinksFunction } from "@remix-run/node"; import { - Links, - Meta, - Outlet, - Scripts, - ScrollRestoration, + Links, + Meta, + Outlet, + Scripts, + ScrollRestoration, } from "@remix-run/react"; import "./tailwind.css"; export const links: LinksFunction = () => { - return [{ rel: "icon", href: "/favicon.svg" }]; + return [{ rel: "icon", href: "/favicon.svg" }]; }; 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> - {children} - <ScrollRestoration /> - <Scripts /> - </body> - </html> - ); + return ( + <html lang="en"> + <head> + <meta charSet="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <Meta /> + <Links /> + </head> + <body> + {children} + <ScrollRestoration /> + <Scripts /> + </body> + </html> + ); } export default function App() { - return <Outlet />; + return <Outlet />; } |
