UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

16 lines (13 loc) 571 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { OhayoUtilModule } from '@ohayo/util'; import { GlobalFooterItemComponent } from './global-footer-item.component'; import { GlobalFooterComponent } from './global-footer.component'; const COMPONENTS = [GlobalFooterComponent, GlobalFooterItemComponent]; @NgModule({ imports: [CommonModule, RouterModule, OhayoUtilModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class GlobalFooterModule { }