TFTPaths/src/app/app.module.ts

25 lines
652 B
TypeScript
Raw Normal View History

2019-08-13 15:43:57 +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-19 19:44:54 +02:00
import { HomeComponent } from '../components/home/home.component';
import { ReactiveFormsModule } from '@angular/forms';
import { LayoutComponent } from '../components/layout/layout.component';
2019-08-13 15:43:57 +02:00
@NgModule({
declarations: [
2019-08-19 19:44:54 +02:00
AppComponent,
HomeComponent,
LayoutComponent
2019-08-13 15:43:57 +02:00
],
imports: [
BrowserModule,
2019-08-19 19:44:54 +02:00
AppRoutingModule,
ReactiveFormsModule
2019-08-13 15:43:57 +02:00
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }