UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

17 lines (13 loc) 526 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 { NzDividerModule } from 'ng-zorro-antd/divider'; import { G2PieComponent } from './pie.component'; const COMPONENTS = [G2PieComponent]; @NgModule({ imports: [CommonModule, OhayoUtilModule, NzDividerModule, NzOutletModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class G2PieModule { }