import { IVideo } from '@/typings/video.type'; import Image from 'next/image'; import Link from 'next/link'; const VideoItem = ({ img, title, id, slides }: IVideo) => { return ( {img ? ( <>
{title} {'play
) : null} {/* {premium ? : null} */}

{title}

{/* {`${views} Views`} */}
); }; export default VideoItem;