import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { ThingBucketRouterModule } from './thing-bucket.routes'; import { DashboardComponent } from './dashboard/dashboard.component'; import { ThingComponent } from './thing/thing.component'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; import { ReactiveFormsModule } from '@angular/forms'; import { ThingService } from './services/thing.service'; import { SharedModule } from 'app/shared/shared.module'; @NgModule({ imports: [ CommonModule, FormsModule, NgbModule, ReactiveFormsModule, SharedModule, ThingBucketRouterModule ], declarations: [ DashboardComponent, ThingComponent ], providers: [ThingService], }) export class ThingBucketModule { }