jellyfish-web/src/routes/experimentalAppRoutes/asyncRoutes/user.ts
2023-04-12 19:01:02 -04:00

8 lines
290 B
TypeScript

import { AsyncRoute } from '../../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' }
];