UNPKG

ng2-bootstrap-base-modified

Version:

Native Angular Bootstrap Components Typeahead modified

27 lines (24 loc) 769 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { RouterModule } from '@angular/router'; import { PopoverModule } from 'ng2-bootstrap/popover'; import { SharedModule } from '../../shared'; import { DEMO_COMPONENTS } from './demos'; import { PopoverSectionComponent } from './popover-section.component'; import { routes } from './demo-popover.routes'; @NgModule({ declarations: [ PopoverSectionComponent, ...DEMO_COMPONENTS ], imports: [ CommonModule, FormsModule, SharedModule, PopoverModule.forRoot(), RouterModule.forChild(routes) ], exports: [PopoverSectionComponent] }) export class DemoPopoverModule {}