import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { NgModule } from '@angular/core'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { MaterialModule } from './commons/ui/material/material.module'; import { AuthComponent } from './pages/auth/auth.component'; @NgModule({ declarations: [ AppComponent, ], imports: [ BrowserModule, BrowserAnimationsModule, AppRoutingModule, MaterialModule, ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }