refactor(aio): remove ngOnInit method

This commit is contained in:
Alexander Zhukov 2017-05-05 17:22:35 +03:00
parent 3e47df7526
commit 923e56c3d2
17 changed files with 37 additions and 103 deletions

View file

@ -1,4 +1,4 @@
import { Component, OnInit } from '@angular/core';
import { Component } from '@angular/core';
@Component({
selector: 'ngx-charts',
@ -6,8 +6,5 @@ import { Component, OnInit } from '@angular/core';
<p>charts work!</p>
`,
})
export class NgxChartsComponent implements OnInit {
constructor() { }
ngOnInit() { }
export class NgxChartsComponent {
}