UNPKG

ng2-bootstrap-base-modified

Version:

Native Angular Bootstrap Components Typeahead modified

28 lines (25 loc) 780 B
import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { CommonModule } from '@angular/common'; import { RouterModule } from '@angular/router'; import { SortableModule } from 'ng2-bootstrap/sortable'; import { SharedModule } from '../../shared'; import { SortableSectionComponent } from './sortable-section.component'; import { DEMO_COMPONENTS } from './demos'; import { routes } from './demo-sortable.routes'; @NgModule({ declarations: [ SortableSectionComponent, ...DEMO_COMPONENTS ], imports: [ CommonModule, FormsModule, SharedModule, SortableModule.forRoot(), RouterModule.forChild(routes) ], exports: [SortableSectionComponent] }) export class DemoSortableModule { }