You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;