Add confirmation to installing

This commit is contained in:
Olivier Gagnon
2021-12-18 18:13:49 -05:00
parent 02605090df
commit 555216a39b
5 changed files with 64 additions and 14 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ interface IProps {
open: boolean;
onClose: () => void;
onConfirm: () => void;
confirmationText: string;
confirmationText: string | React.ReactNode;
}
export function ConfirmationModal(props: IProps): React.ReactElement {