import { useNavigate } from 'react-router-dom'; // SUPPORTED JSON FORMAT // [ // { // "id": 1, // "title": "Video minecraft", // "thumbnail": "/api/media/thumbnail/78438E11ABA5D0C8.webp", // "video_description": "Cest une super video minecraft", // "channel": 1, // "visibility": "public", // "file": "/api/media/video/78438E11ABA5D0C8.mp4", // "slug": "78438E11ABA5D0C8", // "format": "mp4", // "release_date": "2025-08-11T11:14:01.357Z", // "channel_id": 1, // "owner": 2, // "views": "2", // "creator": { // "name": "astria", // "profilePicture": "/api/media/profile/sacha.jpg", // "description": "salut tout le monde" // }, // "type": "video" // } // ] export default function VideoCard({ video }) { const navigation = useNavigate(); const handleClick = () => { navigation(`/video/${video.id}`, { state: { video } }) } return (
{video.title}

{video.title}

{video.title} {video.creator.name} {video.views} vues
); }