UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

17 lines (13 loc) 556 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { OhayoLocaleModule } from '@ohayo/theme'; import { OhayoUtilModule } from '@ohayo/util'; import { NzToolTipModule } from 'ng-zorro-antd/tooltip'; import { G2MiniProgressComponent } from './mini-progress.component'; const COMPONENTS = [G2MiniProgressComponent]; @NgModule({ imports: [CommonModule, OhayoUtilModule, OhayoLocaleModule, NzToolTipModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class G2MiniProgressModule { }