bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/screenshare/switch-button/container.jsx
Max Franke f2c95c61e3 feat(screenshare): reduce mirror effect
Add the shrink/expand button in the screenshare layout to reduce the mirror/tunnel
effect, when the presenter is sharing the same screen as the application is.
2021-06-07 09:11:32 -03:00

9 lines
223 B
JavaScript

import React from 'react';
import SwitchButtonComponent from './component';
const SwitchButtonContainer = props => <SwitchButtonComponent {...props} />;
export default props => (
<SwitchButtonContainer {...props} />
);