Skip to content

Instantly share code, notes, and snippets.

@leonsomed
Created October 8, 2020 23:13
Show Gist options
  • Save leonsomed/ef99d7aea511258f454277048c3a9c41 to your computer and use it in GitHub Desktop.
Save leonsomed/ef99d7aea511258f454277048c3a9c41 to your computer and use it in GitHub Desktop.
function EditCard({title, description, onConfirm, onCancel}) {
return (
<div>
<div>
<Icon>
<DocumentSVG />
</Icon>
<h1>{title}</h1>
<IconButton onClick={onCancel}>
<CloseSVG />
</IconButton>
</div>
<p>{description}</p>
<div>
<button onClick={onConfirm}>Confirm</button>
<button onClick={onCancel}>Cancel</button>
</div>
</div>
);
}
function Page() {
return (
<React.Fragment>
<EditCard
title="Warning!"
description="Are you sure you want to delete your account?"
onConfirm={onDeleteAccount}
onCancel={onDismissModal}
/>
</React.Fragment>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment