ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
16 lines (13 loc) • 528 B
text/typescript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { OhayoLocaleModule } from '@ohayo/theme';
import { OhayoUtilModule } from '@ohayo/util';
import { NzIconModule } from 'ng-zorro-antd/icon';
import { TagSelectComponent } from './tag-select.component';
const COMPONENTS = [TagSelectComponent];
({
imports: [CommonModule, NzIconModule, OhayoLocaleModule, OhayoUtilModule],
declarations: [...COMPONENTS],
exports: [...COMPONENTS],
})
export class TagSelectModule { }