Skip to content

Instantly share code, notes, and snippets.

@takahirohonda
Created October 14, 2021 03:23
Show Gist options
  • Save takahirohonda/2a7980752b0c6e547e5706f7b80d85b9 to your computer and use it in GitHub Desktop.
Save takahirohonda/2a7980752b0c6e547e5706f7b80d85b9 to your computer and use it in GitHub Desktop.
MyButton
export const MyButton = () => {
const { someAsyncFunc } = someHook();
const handleClick = () => {
await someAsyncFunc();
window.open(link, '_blank');
}
return (
<button role="link" onClick={handleClick}>
click me!
</button>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment