mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-19 13:58:56 +00:00
17 lines
382 B
TypeScript
17 lines
382 B
TypeScript
import { createRootRoute, Outlet } from '@tanstack/react-router';
|
|
|
|
export const Route = createRootRoute({
|
|
component: () => (
|
|
<html>
|
|
<head>
|
|
<meta charSet="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>TanStack Start</title>
|
|
</head>
|
|
<body>
|
|
<Outlet />
|
|
</body>
|
|
</html>
|
|
),
|
|
});
|