@cometchat/chat-uikit-react
Version:
Ready-to-use Chat UI Components for React
19 lines (15 loc) • 419 B
JavaScript
;
var react = require('react');
require('./index.css');
var defaultValue = {
theme: "light",
setTheme: () => {
}
};
var CometChatThemeContext = react.createContext(defaultValue);
CometChatThemeContext.displayName = "CometChatThemeContext";
function useTheme() {
return react.useContext(CometChatThemeContext);
}
exports.CometChatThemeContext = CometChatThemeContext;
exports.useTheme = useTheme;