UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

16 lines (13 loc) 528 B
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]; @NgModule({ imports: [CommonModule, NzIconModule, OhayoLocaleModule, OhayoUtilModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class TagSelectModule { }