- Create new React Components for RemoteVideoMenu and its buttons - Remove existing menu creation from RemoteVideo - Refactor RemoteVideo so all function binding happens once in the constructor, removing the need to rebind when updating the RemoteVideoMenu - Allow popover to append and remove React Components from itself - Refactor popover so post-popover creation calls are broken out and popover removal behavior is all done in one function.
9 lines
338 B
JavaScript
9 lines
338 B
JavaScript
export { default as KickButton } from './KickButton';
|
|
export { default as MuteButton } from './MuteButton';
|
|
export {
|
|
REMOTE_CONTROL_MENU_STATES,
|
|
default as RemoteControlButton
|
|
} from './RemoteControlButton';
|
|
export { default as RemoteVideoMenu } from './RemoteVideoMenu';
|
|
export { default as VolumeSlider } from './VolumeSlider';
|