ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
32 lines (29 loc) • 1.02 kB
text/typescript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { OhayoLocaleModule } from '@ohayo/theme';
import { NzBadgeModule } from 'ng-zorro-antd/badge';
import { NzDropDownModule } from 'ng-zorro-antd/dropdown';
import { NzIconModule } from 'ng-zorro-antd/icon';
import { NzListModule } from 'ng-zorro-antd/list';
import { NzSpinModule } from 'ng-zorro-antd/spin';
import { NzTabsModule } from 'ng-zorro-antd/tabs';
import { NzTagModule } from 'ng-zorro-antd/tag';
import { NoticeIconTcomponentsomponent } from './notice-icon-tab.component';
import { NoticeIconComponent } from './notice-icon.component';
const COMPONENTS = [NoticeIconComponent];
({
imports: [
CommonModule,
OhayoLocaleModule,
NzBadgeModule,
NzDropDownModule,
NzIconModule,
NzListModule,
NzSpinModule,
NzTabsModule,
NzTagModule,
],
declarations: [...COMPONENTS, NoticeIconTcomponentsomponent],
exports: [...COMPONENTS],
})
export class NoticeIconModule { }