11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import DashboardGrid from "../features/dashboard/components/DashboardGrid";
|
|
|
|
export const Route = createFileRoute("/")({
|
|
component: HomePage,
|
|
});
|
|
|
|
function HomePage() {
|
|
return <DashboardGrid />;
|
|
}
|