import Reproductor from '@/Components/Reproductor'; import Authenticated from '@/Layouts/AuthenticatedLayout'; import { useState } from 'react'; export default function Gallery() { const songs = [ { id: 1, title: 'Song 1', artist: 'Artist 1', coverArt: '/images/song1.jpg', }, { id: 2, title: 'Song 2', artist: 'Artist 2', coverArt: '/images/song2.jpg', }, { id: 3, title: 'Song 3', artist: 'Artist 3', coverArt: '/images/song3.jpg', }, ]; const [progress, setProgress] = useState(0); const [isPlaying, setIsPlaying] = useState(false); return ( Galeria Canciones } >
{songs.map((song) => (
{song.title}

{song.title}

{song.artist}

))}
); }