2021-06-09 21:49:59 +08:00
|
|
|
import React from 'react';
|
|
|
|
import PresentationPodsContainer from '../../presentation-pod/container';
|
|
|
|
|
|
|
|
const PresentationArea = ({
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
}) => {
|
|
|
|
const presentationAreaSize = {
|
|
|
|
presentationAreaWidth: width,
|
|
|
|
presentationAreaHeight: height,
|
|
|
|
};
|
|
|
|
return (
|
2021-06-26 04:08:00 +08:00
|
|
|
<PresentationPodsContainer {...{ presentationAreaSize }} />
|
2021-06-09 21:49:59 +08:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default PresentationArea;
|