import { useState } from "react"; import Container from "./container"; const Video = () => { const [playVideo, setPlayVideo] = useState(false); return (
setPlayVideo(!playVideo)} className="relative bg-indigo-300 cursor-pointer aspect-w-16 aspect-h-9 bg-gradient-to-tr from-purple-400 to-indigo-700"> {!playVideo && ( )} {playVideo && ( )}
); } export default Video;