2019-08-09 13:38:51 +02:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
import { AppComponent } from './app.component';
|
2019-08-09 15:14:23 +02:00
|
|
|
import { FormContainerComponent } from './form-container/form-container.component';
|
|
|
|
import { BasePageComponent } from './pages/base-page/base-page.component';
|
|
|
|
import { PageKindComponent } from './pages/page-kind/page-kind.component';
|
|
|
|
import { HeaderComponent } from './header/header.component';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
|
2019-08-09 13:38:51 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
2019-08-09 15:14:23 +02:00
|
|
|
AppComponent,
|
|
|
|
FormContainerComponent,
|
|
|
|
BasePageComponent,
|
|
|
|
PageKindComponent,
|
|
|
|
HeaderComponent,
|
|
|
|
|
2019-08-09 13:38:51 +02:00
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
2019-08-09 15:14:23 +02:00
|
|
|
AppRoutingModule,
|
|
|
|
FormsModule,
|
2019-08-09 13:38:51 +02:00
|
|
|
],
|
|
|
|
providers: [],
|
|
|
|
bootstrap: [AppComponent]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|