import { useContext } from "react" import { PlayerContext } from "../context/PlayerContext" const SongItem = ({name,image,desc,id}) => { const {playWithId} = useContext(PlayerContext) return (
playWithId(id)} className="min-w-[180px] p-2 px-3 rounded cursor-pointer hover:bg-[#ffffff26]">

{name}

{desc}

) } export default SongItem