jellyfish-web/src/routes/asyncRoutes/user.ts
2022-11-15 17:17:22 -05:00

8 lines
275 B
TypeScript

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