ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
15 lines (11 loc) • 388 B
text/typescript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { OhayoUtilModule } from '@ohayo/util';
import { G2CustomComponent } from './custom.component';
const COMPONENTS = [G2CustomComponent];
({
imports: [CommonModule, OhayoUtilModule],
declarations: [...COMPONENTS],
exports: [...COMPONENTS],
})
export class G2CustomModule { }