[O] Show confirm dialog when unlinking a card

This commit is contained in:
Azalea
2024-02-22 19:06:18 -05:00
parent 50029fbb24
commit 5597bf5d1e
4 changed files with 46 additions and 20 deletions

View File

@@ -40,4 +40,13 @@ export interface CardSummary {
chunithm: CardSummaryGame | null
ongeki: CardSummaryGame | null
diva: CardSummaryGame | null
}
export interface ConfirmProps {
title: string
message: string
confirm: () => void
cancel?: () => void
dangerous?: boolean
}