'use client'
import { useState } from 'react'
import ModalVideo from 'react-modal-video'
export default function Video() {
const [isOpen, setOpen] = useState(false)
return (
<>
{/* Video Section Two */}
{/* End Video Section Two */}
setOpen(false)} />
>
)
}