| import { NgModule } from '@angular/core'; | |
| import { BrowserModule } from '@angular/platform-browser'; | |
| import { AppComponent } from './app.component'; | |
| import { EnforcerComponent } from './enforcer/enforcer.component'; | |
| @NgModule({ | |
| declarations: [AppComponent, EnforcerComponent], | |
| imports: [BrowserModule], | |
| providers: [], | |
| bootstrap: [AppComponent], | |
| }) | |
| export class AppModule {} |