ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
16 lines (13 loc) • 571 B
text/typescript
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];
({
imports: [CommonModule, RouterModule, OhayoUtilModule],
declarations: [...COMPONENTS],
exports: [...COMPONENTS],
})
export class GlobalFooterModule { }