UNPKG

coreui-angular-ex

Version:

CoreUI Components Library for Angular

16 lines (14 loc) 344 B
import { NgModule } from '@angular/core'; import { PopoverDirective } from './popover.directive'; import { PopoverComponent } from './popover/popover.component'; @NgModule({ exports: [ PopoverDirective, PopoverComponent ], imports: [ PopoverDirective, PopoverComponent ] }) export class PopoverModule {}