Add frontend.
This commit is contained in:
6
frontend/src/app/app.routes.ts
Normal file
6
frontend/src/app/app.routes.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { Routes } from '@angular/router';
|
||||
|
||||
export const routes: Routes = [
|
||||
{ path: 'login', loadComponent: () => import('./pages/login/login.component').then(module => module.LoginComponent) },
|
||||
{ path: '**', loadComponent: () => import('./pages/home/home.component').then(module => module.HomeComponent) }
|
||||
];
|
||||
Reference in New Issue
Block a user