import React, { useState } from 'react'; import heroThumb from '../../assets/images/hero-thumb-4.png'; import PopupVideo from '../PopupVideo'; function HeroHomeThree() { const [showVideo, setVideoValue] = useState(false); const handleShowVideo = (e) => { e.preventDefault(); setVideoValue(!showVideo); }; return ( <> {showVideo && ( handleShowVideo(e)} /> )}

Creative way to Showcase your app

Jolly good excuse my french boot super my good sir cup of
char richard about chinwag.

); } export default HeroHomeThree;