// Sample songs data - you can add your own songs here const songs = [ { id: 1, title: "Sweet Melody", artist: "Artist Name", duration: "3:45" }, { id: 2, title: "Pink Dreams", artist: "Artist Name", duration: "4:12" }, { id: 3, title: "Sunset Vibes", artist: "Artist Name", duration: "3:30" }, { id: 4, title: "Cosmic Love", artist: "Artist Name", duration: "4:05" }, { id: 5, title: "Dancing in Pink", artist: "Artist Name", duration: "3:55" }, { id: 6, title: "Midnight Rose", artist: "Artist Name", duration: "4:20" }, ]; function App() { return (
{/* Header */}

🎵 My Songs

A collection of my favorite tunes

{/* Songs Container */}
{/* Playlist Header */}
Playlist {songs.length} songs
{/* Songs List */}
    {songs.map((song, index) => (
  • {index + 1}

    {song.title}

    {song.artist}

    {song.duration}
  • ))}
{/* Add Song Button */}
{/* Footer */}
); } export default App;