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

15 lines
292 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 (
<div>
<DashboardGrid />
</div>
);
}