Files
monie-landing/src/routes/index.tsx
Denis Krylov e406c55c89
All checks were successful
Deploy monie-landing (kaniko) / build-and-deploy (push) Successful in 14m15s
chore: initialize project
2026-04-04 23:14:39 +03:00

7 lines
170 B
TypeScript

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