mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-21 23:18:06 -04:00
* basic declared actor manager * put actors in separate file * clippy * hopefully clean up some clippy warnings --------- Co-authored-by: jake <77554505+brxken128@users.noreply.github.com>
9 lines
304 B
TypeScript
9 lines
304 B
TypeScript
import { RouteObject } from 'react-router';
|
|
|
|
export const debugRoutes = [
|
|
{ path: 'cache', lazy: () => import('./cache') },
|
|
{ path: 'cloud', lazy: () => import('./cloud') },
|
|
{ path: 'sync', lazy: () => import('./sync') },
|
|
{ path: 'actors', lazy: () => import('./actors') }
|
|
] satisfies RouteObject[];
|