bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation/presentation-area/component.jsx
Vitor Mateus De Almeida 3599577463 Fix camera calcs
Fix camera calcs 2
2021-06-25 17:57:19 -03:00

18 lines
382 B
JavaScript

import React from 'react';
import PresentationPodsContainer from '../../presentation-pod/container';
const PresentationArea = ({
width,
height,
}) => {
const presentationAreaSize = {
presentationAreaWidth: width,
presentationAreaHeight: height,
};
return (
<PresentationPodsContainer {...{ presentationAreaSize }} />
);
};
export default PresentationArea;