crusader 51fb8ad8c2 ing
2018-03-18 22:35:03 +09:00

21 lines
393 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { NvD3Module } from 'commons/chart/core/nvd3/nvd3.module';
import { LineComponent } from './component/line.component';
@NgModule({
imports: [
CommonModule,
NvD3Module,
],
exports: [
LineComponent,
],
declarations: [
LineComponent,
],
})
export class LineModule { }