UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

18 lines (14 loc) 596 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { OhayoLocaleModule } from '@ohayo/theme'; import { OhayoUtilModule } from '@ohayo/util'; import { NzButtonModule } from 'ng-zorro-antd/button'; import { ExceptionComponent } from './exception.component'; const COMPONENTS = [ExceptionComponent]; @NgModule({ imports: [CommonModule, RouterModule, OhayoUtilModule, OhayoLocaleModule, NzButtonModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class ExceptionModule { }