fix: NCWF-2 bugs and desing fixes (#7)
Co-authored-by: Lala, Shahd <Shahd.Lala@sybit.de> Reviewed-on: #7
This commit was merged in pull request #7.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-board-actions-bar',
|
||||
standalone: true,
|
||||
imports: [],
|
||||
templateUrl: './board-actions-bar.component.html',
|
||||
styleUrl: './board-actions-bar.component.css'
|
||||
})
|
||||
export class BoardActionsBarComponent {
|
||||
@Input() undoAvailable = false;
|
||||
@Input() isGameFinished = false;
|
||||
@Output() takeback = new EventEmitter<void>();
|
||||
@Output() offerDraw = new EventEmitter<void>();
|
||||
@Output() resign = new EventEmitter<void>();
|
||||
}
|
||||
Reference in New Issue
Block a user