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,14 +1,10 @@
import { Component, OnInit } from '@angular/core';
import { Component } from '@angular/core';
@Component({
selector: 'ngx-buttons',
styleUrls: ['./buttons.component.scss'],
templateUrl: './buttons.component.html',
})
export class NgxButtonsComponent implements OnInit {
constructor() { }
ngOnInit() { }
export class NgxButtonsComponent {
}