f2c95c61e3
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.
9 lines
223 B
JavaScript
9 lines
223 B
JavaScript
import React from 'react';
|
|
import SwitchButtonComponent from './component';
|
|
|
|
const SwitchButtonContainer = props => <SwitchButtonComponent {...props} />;
|
|
|
|
export default props => (
|
|
<SwitchButtonContainer {...props} />
|
|
);
|