import { NgModule, ModuleWithProviders } from '@angular/core'; import { HttpModule } from '@angular/http'; import { BrowserModule } from '@angular/platform-browser'; import { RouterModule } from '@angular/router'; import { RssFooterComponent } from './rss-footer.component'; import { MaterialModule } from '../angular-material.module'; @NgModule({ declarations: [ RssFooterComponent ], imports: [ BrowserModule, HttpModule, RouterModule, MaterialModule ], exports: [ RssFooterComponent ] }) export class RssFooterModule { static forRoot(): ModuleWithProviders { return { ngModule: RssFooterModule }; } }