UNPKG

@magicbell/magicbell-react

Version:

React components for building a notification inbox for your app

15 lines (11 loc) 389 B
import { createContext, useContext } from 'react'; export interface IMagicBellContext { images?: Partial<{ emptyInboxUrl: string; }>; isFetchingConfig: boolean; } const MagicBellContext = createContext<IMagicBellContext>({} as IMagicBellContext); export default MagicBellContext; const useMagicBellContext = () => useContext(MagicBellContext); export { useMagicBellContext };