UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

15 lines (11 loc) 397 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { OhayoUtilModule } from '@ohayo/util'; import { G2TagCloudComponent } from './tag-cloud.component'; const COMPONENTS = [G2TagCloudComponent]; @NgModule({ imports: [CommonModule, OhayoUtilModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class G2TagCloudModule { }