mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-22 07:18:58 +00:00
new examples
This commit is contained in:
16
node/tanstack-start/static/app/routes/__root.tsx
Normal file
16
node/tanstack-start/static/app/routes/__root.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
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>
|
||||
),
|
||||
});
|
||||
Reference in New Issue
Block a user