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,13 +1,9 @@
import { Component, OnInit } from '@angular/core';
import { Component } from '@angular/core';
@Component({
selector: 'ngx-dropdown-buttons',
templateUrl: './dropdown.component.html',
})
export class NgxDropdownButtonsComponent implements OnInit {
constructor() { }
ngOnInit() { }
export class NgxDropdownButtonsComponent {
}