ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
16 lines (12 loc) • 452 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 { G2BarComponent } from './bar.component';
const COMPONENTS = [G2BarComponent];
({
imports: [CommonModule, OhayoUtilModule, NzOutletModule],
declarations: [...COMPONENTS],
exports: [...COMPONENTS],
})
export class G2BarModule { }