feat(buttons): add the buttons components

This commit is contained in:
Alexander Zhukov 2017-04-29 18:53:19 +03:00
parent 916289eb94
commit 9ebf30ac68
29 changed files with 854 additions and 66 deletions

View file

@ -0,0 +1,13 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'ngx-dropdown-buttons',
templateUrl: './dropdown.component.html',
})
export class NgxDropdownButtonsComponent implements OnInit {
constructor() { }
ngOnInit() { }
}