bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation-pod/component.jsx
2021-06-09 10:49:59 -03:00

25 lines
685 B
JavaScript

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import PresentationContainer from '../presentation/container';
class PresentationPods extends PureComponent {
render() {
/*
filtering/sorting presentation pods goes here
all the future UI for the pods also goes here
PresentationContainer should fill any empty box provided by us
*/
return (
<PresentationContainer podId="DEFAULT_PRESENTATION_POD" {...this.props} />
);
}
}
export default PresentationPods;
PresentationPods.propTypes = {
presentationPodIds: PropTypes.arrayOf(PropTypes.shape({
podId: PropTypes.string.isRequired,
})).isRequired,
};