nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/svg/samples/chart2/app.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { TicksComponent } from './ticks.component';

@NgModule({
  imports: [BrowserModule],
  declarations: [AppComponent, TicksComponent],
  bootstrap: [AppComponent]
})
export class AppModule {}