1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Restructure async route code

This commit is contained in:
Bill Thornton 2022-11-01 16:41:09 -04:00
parent 20c33381f9
commit 2bc3bc8a93
5 changed files with 59 additions and 41 deletions

View file

@ -0,0 +1,8 @@
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' }
];