Repository is not clean. Please commit or stash any changes before updating.
This commit is contained in:
parent
aac0ae7544
commit
4b8edc6552
20 changed files with 23868 additions and 1181 deletions
|
|
@ -1,7 +1,12 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
import {PageConnexionComponent} from './page-connexion/page-connexion.component';
|
||||
import {PageRegisterComponent} from './page-register/page-register.component';
|
||||
|
||||
const routes: Routes = [];
|
||||
const routes: Routes = [
|
||||
{ path: 'connexion', component: PageConnexionComponent },
|
||||
{ path: 'register', component: PageRegisterComponent }
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forRoot(routes)],
|
||||
|
|
|
|||
Reference in a new issue