32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
import { BrowserModule } from '@angular/platform-browser';
|
|
import { NgModule } from '@angular/core';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
import { AppComponent } from './app.component';
|
|
import { SelectRoleComponent } from './components/select-role/select-role.component';
|
|
import { appRoutingModule } from '../app.routing';
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatCardModule } from '@angular/material/card';
|
|
import { SignInComponent } from './components/sign-in/sign-in.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
SelectRoleComponent,
|
|
SignInComponent
|
|
],
|
|
imports: [
|
|
BrowserModule.withServerTransition({ appId: 'ng-cli-universal' }),
|
|
HttpClientModule,
|
|
FormsModule,
|
|
appRoutingModule,
|
|
BrowserAnimationsModule,
|
|
MatButtonModule,
|
|
MatCardModule,
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|