2022-03-15 10:15:06 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
|
2022-03-15 12:11:20 +00:00
|
|
|
import { MatToolbarModule } from '@angular/material/toolbar';
|
|
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
|
|
|
2022-03-15 10:15:06 +00:00
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { LoginComponent } from './Views/login/login.component';
|
|
|
|
import { HeaderComponent } from './Views/header/header.component';
|
2022-03-15 12:11:20 +00:00
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
2022-03-15 10:15:06 +00:00
|
|
|
|
|
|
|
@NgModule({
|
2022-03-15 12:11:20 +00:00
|
|
|
declarations: [AppComponent, LoginComponent, HeaderComponent],
|
2022-03-15 10:15:06 +00:00
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
2022-03-15 12:11:20 +00:00
|
|
|
AppRoutingModule,
|
|
|
|
BrowserAnimationsModule,
|
|
|
|
MatToolbarModule,
|
|
|
|
MatIconModule,
|
|
|
|
MatButtonModule,
|
2022-03-15 10:15:06 +00:00
|
|
|
],
|
|
|
|
providers: [],
|
2022-03-15 12:11:20 +00:00
|
|
|
bootstrap: [AppComponent],
|
2022-03-15 10:15:06 +00:00
|
|
|
})
|
2022-03-15 12:11:20 +00:00
|
|
|
export class AppModule {}
|