mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-21 21:40:49 +02:00
14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ngx-buttons',
|
|
styleUrls: ['./buttons.component.scss'],
|
|
templateUrl: './buttons.component.html',
|
|
})
|
|
export class NgxButtonsComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() { }
|
|
|
|
}
|