removed onkeyup w/ burnettk

This commit is contained in:
jasquat 2022-09-01 16:13:10 -04:00
parent 57d576e653
commit 95f3c75732
1 changed files with 1 additions and 9 deletions

View File

@ -59,17 +59,9 @@ export default function ButtonWithConfirmation({
); );
}; };
const onKeyUp = () => {
console.log('ehy');
};
return ( return (
<main> <main>
<Button <Button onClick={handleShowConfirmationPrompt} variant="danger">
onClick={handleShowConfirmationPrompt}
variant="danger"
onKeyUp={onKeyUp}
>
{buttonLabel} {buttonLabel}
</Button> </Button>
{confirmationDialog()} {confirmationDialog()}