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

index.js 626B

12345678910111213141516171819
  1. // @flow
  2. export { default as KickButton } from './KickButton';
  3. export {
  4. default as KickRemoteParticipantDialog
  5. } from './KickRemoteParticipantDialog';
  6. export { default as MuteButton } from './MuteButton';
  7. export {
  8. default as MuteRemoteParticipantDialog
  9. } from './MuteRemoteParticipantDialog';
  10. export {
  11. REMOTE_CONTROL_MENU_STATES,
  12. default as RemoteControlButton
  13. } from './RemoteControlButton';
  14. export { default as RemoteVideoMenu } from './RemoteVideoMenu';
  15. export {
  16. default as RemoteVideoMenuTriggerButton
  17. } from './RemoteVideoMenuTriggerButton';
  18. export { default as VolumeSlider } from './VolumeSlider';