16 lines
295 B
TypeScript
16 lines
295 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-game-button',
|
|
templateUrl: './game-button.component.html',
|
|
styleUrls: ['./game-button.component.scss']
|
|
})
|
|
export class GameButtonComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|