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
|
|
@ -3,14 +3,25 @@ import { BrowserModule } from '@angular/platform-browser';
|
|||
|
||||
import { AppRoutingModule } from './app-routing.module';
|
||||
import { AppComponent } from './app.component';
|
||||
import { PageConnexionComponent } from './page-connexion/page-connexion.component';
|
||||
import { PageRegisterComponent } from './page-register/page-register.component';
|
||||
import { NavBarComponent } from './nav-bar/nav-bar.component';
|
||||
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
|
||||
import {MatSlideToggleModule} from '@angular/material/slide-toggle';
|
||||
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent
|
||||
AppComponent,
|
||||
PageConnexionComponent,
|
||||
PageRegisterComponent,
|
||||
NavBarComponent
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
AppRoutingModule
|
||||
AppRoutingModule,
|
||||
BrowserAnimationsModule,
|
||||
MatSlideToggleModule
|
||||
],
|
||||
providers: [],
|
||||
bootstrap: [AppComponent]
|
||||
|
|
|
|||
Reference in a new issue