UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

16 lines (12 loc) 472 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 { G2TimelineComponent } from './timeline.component'; const COMPONENTS = [G2TimelineComponent]; @NgModule({ imports: [CommonModule, OhayoUtilModule, NzOutletModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class G2TimelineModule { }