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

Mobile Interaction Designs of January 2022{' '}

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

); } export default HeroHomeFour;