mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-30 06:41:18 +01:00
11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
|
|
import { createRoute } from "@tanstack/react-router"
|
||
|
|
|
||
|
|
import { GeneralSettingsPanel } from "@/components/general-settings-panel"
|
||
|
|
import { Route as dashboardRoute } from "../_dashboard"
|
||
|
|
|
||
|
|
export const Route = createRoute({
|
||
|
|
getParentRoute: () => dashboardRoute,
|
||
|
|
path: "/",
|
||
|
|
component: GeneralSettingsPanel,
|
||
|
|
})
|