Archived
Private
Public Access
1
0

finished files page

This commit is contained in:
2023-04-16 14:28:34 +02:00
parent 72f08fc9cb
commit dfc405d799
26 changed files with 534 additions and 44 deletions

View File

@@ -8,10 +8,14 @@ export const routes: Routes = [
},
{
path: 'home',
loadComponent: () => import('./home/home.page').then( m => m.HomePage)
loadComponent: () => import('./pages/home/home.page').then(m => m.HomePage)
},
{
path: 'login',
loadComponent: () => import('./login/login.page').then( m => m.LoginPage)
loadComponent: () => import('./pages/login/login.page').then(m => m.LoginPage)
},
{
path: 'files',
loadComponent: () => import('./pages/files/files.page').then( m => m.FilesPage)
},
];