8 lines
314 B
TypeScript
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' }
|
|
];
|