Files
BayIQ-UI/src/routes/index.tsx

11 lines
259 B
TypeScript
Raw Normal View History

2025-11-20 19:09:43 +00:00
import { createFileRoute } from "@tanstack/react-router";
import DashboardGrid from "../features/dashboard/components/DashboardGrid";
export const Route = createFileRoute("/")({
component: HomePage,
});
function HomePage() {
return <DashboardGrid />;
2025-11-20 19:09:43 +00:00
}