Files
monie-landing/src/routes/index.tsx
Denis Krylov 49b976c53f
Some checks failed
Deploy monie-landing (kaniko) / build-and-deploy (push) Failing after 9m46s
chore: initialize project
2026-04-04 22:13:10 +03:00

7 lines
170 B
TypeScript

import { createFileRoute } from "@tanstack/react-router";
import { HomePage } from "#/pages/home";
export const Route = createFileRoute("/")({
component: HomePage,
});