Skip to content

Instantly share code, notes, and snippets.

@muhshahabipour
Last active December 21, 2019 20:12
Show Gist options
  • Save muhshahabipour/711971c7b1b47e8d7e59427b6ae4646a to your computer and use it in GitHub Desktop.
Save muhshahabipour/711971c7b1b47e8d7e59427b6ae4646a to your computer and use it in GitHub Desktop.
react-notifications-component-homepage2
function Homepage() {
return (
<>
My Website
<button
onClick={() => {
store.addNotification({
content: MyNotification, // 👈
container: 'bottom-right',
animationIn: ["animated", "fadeIn"],
animationOut: ["animated", "fadeOut"],
dismiss: {
duration: 3000
}
})
}}
>
Add notification
</button>
</>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment