import { useEffect, useState } from "react" const Genres = ({id}) => { const [genres, setGenres] = useState() useEffect(() => { fetch(`https://api.themoviedb.org/3/movie/${id}?api_key=8216fbb9997cd81a67471e6cb5a6f2df`).then((res) => res.json()).then((data) => { setGenres(data?.genres) }) }, [id]) return (