jellyfish-web/src/apps/experimental/routes/asyncRoutes/user.ts
2023-04-28 01:24:37 -04:00

8 lines
314 B
TypeScript

import { AsyncRoute } from '../../../../components/router/AsyncRoute';
export const ASYNC_USER_ROUTES: AsyncRoute[] = [
{ path: 'search.html', page: 'search' },
{ path: 'userprofile.html', page: 'user/userprofile' },
{ path: 'home.html', page: 'home' },
{ path: 'movies.html', page: 'movies' }
];