You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

app.module.ts 506B

123456789101112131415161718192021
  1. import { BlogEntryComponent } from './blog-entry.component';
  2. import { BrowserModule } from '@angular/platform-browser';
  3. import { NgModule } from '@angular/core';
  4. import { AppComponent } from './app.component';
  5. import {FormsModule, ReactiveFormsModule} from '@angular/forms';
  6. @NgModule({
  7. declarations: [
  8. AppComponent,
  9. BlogEntryComponent
  10. ],
  11. imports: [
  12. BrowserModule,
  13. FormsModule,
  14. ReactiveFormsModule
  15. ],
  16. providers: [],
  17. bootstrap: [AppComponent]
  18. })
  19. export class AppModule { }