UNPKG

angular-d3-graph

Version:

Component for rendering a line graph or bar graph.

19 lines (16 loc) 383 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { GraphModule } from './graph/graph.module'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, GraphModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }