Skip to content

Instantly share code, notes, and snippets.

@henev
Last active April 12, 2022 22:35
Show Gist options
  • Save henev/211d139ced62fcdf4bdff56af7936f34 to your computer and use it in GitHub Desktop.
Save henev/211d139ced62fcdf4bdff56af7936f34 to your computer and use it in GitHub Desktop.
useToast Hook
import { useContext } from 'react';
import { ToastContext } from './ToastContext';
export const useToast = () => useContext(ToastContext);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment