@liveblocks/react-ui
Version:
A set of React pre-built components for the Liveblocks products. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.
29 lines (25 loc) • 1.33 kB
JavaScript
var core = require('@liveblocks/core');
var version = require('./version.cjs');
var Comment = require('./components/Comment.cjs');
var Composer = require('./components/Composer.cjs');
var HistoryVersionSummary = require('./components/HistoryVersionSummary.cjs');
var HistoryVersionSummaryList = require('./components/HistoryVersionSummaryList.cjs');
var InboxNotification = require('./components/InboxNotification.cjs');
var InboxNotificationList = require('./components/InboxNotificationList.cjs');
var Thread = require('./components/Thread.cjs');
var config = require('./config.cjs');
var icon = require('./icon.cjs');
var overrides = require('./overrides.cjs');
core.detectDupes(version.PKG_NAME, version.PKG_VERSION, version.PKG_FORMAT);
exports.Comment = Comment.Comment;
exports.Composer = Composer.Composer;
exports.HistoryVersionSummary = HistoryVersionSummary.HistoryVersionSummary;
exports.HistoryVersionSummaryList = HistoryVersionSummaryList.HistoryVersionSummaryList;
exports.InboxNotification = InboxNotification.InboxNotification;
exports.InboxNotificationList = InboxNotificationList.InboxNotificationList;
exports.Thread = Thread.Thread;
exports.LiveblocksUIConfig = config.LiveblocksUIConfig;
exports.Icon = icon;
exports.useOverrides = overrides.useOverrides;
//# sourceMappingURL=index.cjs.map
;