21 lines
503 B
TypeScript
21 lines
503 B
TypeScript
import { Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration } from 'remix'
|
|
|
|
export default function App() {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<meta charSet="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<Meta />
|
|
<Links />
|
|
</head>
|
|
<body>
|
|
<Outlet />
|
|
<ScrollRestoration />
|
|
<Scripts />
|
|
{process.env.NODE_ENV === 'development' && <LiveReload />}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|