bigbluebutton-strapi
Version:
Integrate online classes into Strapi CMS via BigBlueButton open-source video conferencing. This free plugin also provides API end-points to easily setup start and join buttons for web conferencing into any frontend app.
21 lines (16 loc) • 299 B
JavaScript
/*
*
* HomePage
*
*/
import React, { memo } from 'react';
// import PropTypes from 'prop-types';
import BigBlueButton from '../../components/BigBlueButton/BigBlueButton';
const HomePage = () => {
return (
<div>
<BigBlueButton />
</div>
);
};
export default memo(HomePage);