ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
19 lines (16 loc) • 742 B
text/typescript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { OhayoUtilModule } from '@ohayo/util';
import { NzOutletModule } from 'ng-zorro-antd/core/outlet';
import { NzIconModule } from 'ng-zorro-antd/icon';
import { NzToolTipModule } from 'ng-zorro-antd/tooltip';
import { SEContainerComponent } from './se-container.component';
import { SETitleComponent } from './se-title.component';
import { SEComponent } from './se.component';
const COMPONENTS = [SEContainerComponent, SEComponent, SETitleComponent];
({
imports: [CommonModule, OhayoUtilModule, NzToolTipModule, NzIconModule, NzOutletModule],
declarations: [...COMPONENTS],
exports: [...COMPONENTS],
})
export class SEModule { }