1 import { useContext } from 'react';
3 import NotificationsContext from '../containers/notifications/notificationsContext';
5 const useNotifications = () => {
6 const manager = useContext(NotificationsContext);
9 throw new Error('Trying to use uninitialized NotificationsContext');
15 export default useNotifications;