All checks were successful
Deploy monie-landing (kaniko) / build-and-deploy (push) Successful in 14m15s
7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import { HomePage } from "#/pages/home";
|
|
|
|
export const Route = createFileRoute("/")({
|
|
component: HomePage,
|
|
});
|