ButtonWatchVideo.js 286 B

123456789101112131415
  1. import './ButtonWatchVideo.css';
  2. function ButtonWatchVideo() {
  3. return (
  4. <div className="ButtonWatchVideo">
  5. <div className="Play"/>
  6. <p className="WatchVideo">Watch video</p>
  7. </div>
  8. );
  9. }
  10. export default ButtonWatchVideo;