17 lines
303 B
TypeScript
17 lines
303 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ns-my-button',
|
|
templateUrl: './my-button.component.html',
|
|
styleUrls: ['./my-button.component.css'],
|
|
moduleId: module.id,
|
|
})
|
|
export class MyButtonComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|