UNPKG

angular-d3-graph

Version:

Component for rendering a line graph or bar graph.

11 lines (9 loc) 288 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { GraphComponent } from './graph/graph.component'; @NgModule({ imports: [ CommonModule ], exports: [ GraphComponent ], declarations: [ GraphComponent ] }) export class GraphModule { }