15 lines
292 B
TypeScript
15 lines
292 B
TypeScript
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>
|
|
);
|
|
}
|