import React from "react"; function SongList({ songs }) { if (!songs.length) return

No songs yet

; return ( ); } export default SongList;