ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
15 lines (12 loc) • 471 B
text/typescript
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];
({
imports: [CommonModule, OhayoUtilModule, NzIconModule],
declarations: [...COMPONENTS],
exports: [...COMPONENTS],
})
export class ErrorCollectModule { }