import React from 'react'; import { Box } from '@mui/material'; import PropTypes from 'prop-types'; const VideoAds = ({ video_url, height, width }) => { return ( ); }; VideoAds.propTypes = { video_url: PropTypes.string.isRequired, height: PropTypes.string, width: PropTypes.string, }; VideoAds.defaultProps = { video_url: 'https://www.w3schools.com/html/mov_bbb.mp4', height: '300px', width: '100%', }; export default VideoAds;