const VideoButton = ({ buttonVideoURL, buttonOneText }) => { const openVideoLink = () => { window.open(buttonVideoURL, "_blank"); }; return (
); }; export default VideoButton;