UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

15 lines (13 loc) 568 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { OhayoUtilModule } from '@ohayo/util'; import { NzIconModule } from 'ng-zorro-antd/icon'; import { NzToolTipModule } from 'ng-zorro-antd/tooltip'; import { SidebarNavComponent } from './sidebar-nav.component'; @NgModule({ imports: [CommonModule, RouterModule, NzIconModule, NzToolTipModule, OhayoUtilModule], declarations: [SidebarNavComponent], exports: [SidebarNavComponent], }) export class SidebarNavModule { }