UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

15 lines (12 loc) 452 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { OhayoUtilModule } from '@ohayo/util'; import { SGContainerComponent } from './sg-container.component'; import { SGComponent } from './sg.component'; const COMPONENTS = [SGContainerComponent, SGComponent]; @NgModule({ imports: [CommonModule, OhayoUtilModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class SGModule { }