UNPKG

@bubbles-ui/notifications

Version:

The Bubbles Design System is Leemonade's open-source design system for products and experiences.

7 lines 245 B
import { createContext } from 'react'; export const CONTEXT_TYPES = { DEFAULT: 'notification', CHAT: 'chat' }; export const NotificationsContext = /*#__PURE__*/createContext(null); export const ChatContext = /*#__PURE__*/createContext(null);