mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-24 00:17:47 -04:00
21 lines
487 B
TypeScript
21 lines
487 B
TypeScript
import { RouteObject } from 'react-router';
|
|
|
|
export const debugRoutes = [
|
|
{ path: 'cloud', lazy: () => import('./cloud') },
|
|
{ path: 'actors', lazy: () => import('./actors') },
|
|
{
|
|
path: 'p2p',
|
|
lazy: () => import('./p2p'),
|
|
children: [
|
|
{
|
|
path: 'overview',
|
|
lazy: () => import('./p2p').then((m) => ({ Component: m.Overview }))
|
|
},
|
|
{
|
|
path: 'remote',
|
|
lazy: () => import('./p2p').then((m) => ({ Component: m.RemotePeers }))
|
|
}
|
|
]
|
|
}
|
|
] satisfies RouteObject[];
|