cic-staff-client/src/app/app.module.ts

23 lines
614 B
TypeScript
Raw Normal View History

2020-10-30 16:16:05 +01:00
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
2020-12-28 10:12:37 +01:00
import { PasswordToggleDirective } from './_directives/password-toggle.directive';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2020-10-30 16:16:05 +01:00
@NgModule({
declarations: [
2020-12-28 10:12:37 +01:00
AppComponent,
PasswordToggleDirective
2020-10-30 16:16:05 +01:00
],
imports: [
BrowserModule,
2020-12-28 10:12:37 +01:00
AppRoutingModule,
BrowserAnimationsModule
2020-10-30 16:16:05 +01:00
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }