您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SidePanels.js 296B

12345678910111213
  1. import Chat from './chat/Chat';
  2. import { isButtonEnabled } from '../../../react/features/toolbox';
  3. const SidePanels = {
  4. init(eventEmitter) {
  5. // Initialize chat
  6. if (isButtonEnabled('chat')) {
  7. Chat.init(eventEmitter);
  8. }
  9. }
  10. };
  11. export default SidePanels;