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