Skip to content

Instantly share code, notes, and snippets.

@aibolik
Created January 12, 2020 21:06
Show Gist options
  • Select an option

  • Save aibolik/8402fdead13c397106d55e6c802c34eb to your computer and use it in GitHub Desktop.

Select an option

Save aibolik/8402fdead13c397106d55e6c802c34eb to your computer and use it in GitHub Desktop.
ToastProvider component - start (part of post https://aibolik.github.io/blog/creating-toast-api-with-react-hooks)
const ToastProvider = ({ children }) => {
const [toasts, setToasts] = useState([]);
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment