import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { gettingStartedComponent } from './gettingStarted.component'; @NgModule({ declarations: [ gettingStartedComponent ], imports: [ HttpModule, FormsModule, BrowserModule, BrowserAnimationsModule ], exports: [gettingStartedComponent] }) export class gettingStartedModule { }