2024-03-07 19:16:23 +01:00
|
|
|
import { createRootRoute, Outlet } from '@tanstack/react-router'
|
|
|
|
import { TanStackRouterDevtools } from '@tanstack/router-devtools'
|
2024-03-08 14:58:36 +01:00
|
|
|
|
2024-03-07 19:16:23 +01:00
|
|
|
import NotFound from '../components/Common/NotFound'
|
|
|
|
|
|
|
|
export const Route = createRootRoute({
|
2024-03-08 14:58:36 +01:00
|
|
|
component: () => (
|
|
|
|
<>
|
|
|
|
<Outlet />
|
|
|
|
<TanStackRouterDevtools />
|
|
|
|
</>
|
|
|
|
),
|
|
|
|
notFoundComponent: () => <NotFound />,
|
|
|
|
})
|