nested-forms/apps/global-form/src/app/app.module.ts

13 lines
297 B
TypeScript
Raw Normal View History

2019-09-02 19:23:01 +00:00
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}