mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-21 15:07:54 -04:00
21 lines
772 B
TypeScript
21 lines
772 B
TypeScript
import { RouteObject } from 'react-router';
|
|
|
|
export default [
|
|
{
|
|
lazy: () => import('../OverviewLayout'),
|
|
children: [
|
|
{ path: 'contacts', lazy: () => import('./contacts') },
|
|
{ path: 'keys', lazy: () => import('./keys') },
|
|
{ path: 'security', lazy: () => import('./security') },
|
|
{ path: 'sharing', lazy: () => import('./sharing') },
|
|
{ path: 'sync', lazy: () => import('./sync') },
|
|
{ path: 'tags', lazy: () => import('./tags') },
|
|
{ path: 'general', lazy: () => import('./general') },
|
|
{ path: 'tags', lazy: () => import('./tags') },
|
|
{ path: 'nodes', lazy: () => import('./nodes') },
|
|
{ path: 'locations', lazy: () => import('./locations') }
|
|
]
|
|
},
|
|
{ path: 'locations/:id', lazy: () => import('./locations/$id') }
|
|
] satisfies RouteObject[];
|