import CloudCard3 from "./cloud-card3"; import CloudCard2 from "./cloud-card2"; export default function NextEpisode() { const nextEpisode = { date: new Date(), genre: 'film fights', judge: 'Christian Ziermann', player: [ 'Johannes', 'Lui', 'Daniel' ] }; return (

Nächste Episode

{nextEpisode.date.toDateString}

{nextEpisode.genre}

{nextEpisode.judge}

{nextEpisode.player.join(' & ')}

) }