mirror of
https://github.com/AIR-EISTI/hades.git
synced 2025-01-10 11:31:30 +01:00
15 lines
269 B
TypeScript
15 lines
269 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-button',
|
|
templateUrl: './button.component.html',
|
|
styleUrls: ['./button.component.css']
|
|
})
|
|
export class ButtonComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|