practice_code/web/czr/app/root.tsx

32 lines
625 B
TypeScript

import {
Links,
Meta,
Outlet,
Scripts,
ScrollRestoration,
} from "@remix-run/react";
import "./index.css"
import Navigation from '~/components/Navigation';
export default function App() {
return (
<html lang="zh">
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<Meta />
<Links />
</head>
<body suppressHydrationWarning={true}>
<Navigation />
<div className="pt-16">
<Outlet />
</div>
<ScrollRestoration />
<Scripts />
</body>
</html>
);
}