ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
16 lines (12 loc) • 443 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 { TrendComponent } from './trend.component';
const COMPONENTS = [TrendComponent];
({
imports: [CommonModule, NzIconModule, OhayoUtilModule],
declarations: [...COMPONENTS],
exports: [...COMPONENTS],
})
export class TrendModule { }