UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

16 lines (12 loc) 452 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { OhayoUtilModule } from '@ohayo/util'; import { NzOutletModule } from 'ng-zorro-antd/core/outlet'; import { G2BarComponent } from './bar.component'; const COMPONENTS = [G2BarComponent]; @NgModule({ imports: [CommonModule, OhayoUtilModule, NzOutletModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class G2BarModule { }