UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

15 lines (12 loc) 471 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { OhayoUtilModule } from '@ohayo/util'; import { NzIconModule } from 'ng-zorro-antd/icon'; import { ErrorCollectComponent } from './error-collect.component'; const COMPONENTS = [ErrorCollectComponent]; @NgModule({ imports: [CommonModule, OhayoUtilModule, NzIconModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class ErrorCollectModule { }