zerobyte/apps/docs/src/routes/index.tsx
Nico 5b728b8144
chore: move docs to monorepo apps (#801)
* chore: move docs to monorepo apps

* chore(docs): bump vite
2026-04-16 19:03:00 +02:00

9 lines
221 B
TypeScript

import { createFileRoute } from "@tanstack/react-router";
import LandingPage from "../components/LandingPage";
export const Route = createFileRoute("/")({ component: App });
function App() {
return <LandingPage />;
}