1import { createRootRoute } from "@tanstack/react-router";
2
3import { Shell } from "@/components/layout/Shell";
4import { ErrorPage } from "@/pages/ErrorPage";
5
6export const Route = createRootRoute({
7 component: Shell,
8 errorComponent: ErrorPage,
9});