@bubbles-ui/notifications
Version:
The Bubbles Design System is Leemonade's open-source design system for products and experiences.
16 lines (15 loc) • 532 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.NotificationsContext = exports.ChatContext = exports.CONTEXT_TYPES = void 0;
var _react = require("react");
const CONTEXT_TYPES = {
DEFAULT: 'notification',
CHAT: 'chat'
};
exports.CONTEXT_TYPES = CONTEXT_TYPES;
const NotificationsContext = /*#__PURE__*/(0, _react.createContext)(null);
exports.NotificationsContext = NotificationsContext;
const ChatContext = /*#__PURE__*/(0, _react.createContext)(null);
exports.ChatContext = ChatContext;