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 476B

1234567891011121314151617181920
  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 {ReactiveFormsModule} from '@angular/forms';
  6. @NgModule({
  7. declarations: [
  8. AppComponent,
  9. BlogEntryComponent
  10. ],
  11. imports: [
  12. BrowserModule,
  13. ReactiveFormsModule
  14. ],
  15. providers: [],
  16. bootstrap: [AppComponent]
  17. })
  18. export class AppModule { }