import React from "react"; const links = [ { href: "https://youtube.com", label: "Youtube" }, { href: "https://www.discogs.com/", label: "Discog" }, { href: "https://findmusicbylyrics.com/", label: "Find music by Lyrics" }, { href: "https://musicbrainz.org/", label: "MusicBrainz" } ].map(link => { link.key = `nav-link-${link.href}-${link.label}`; return link; }); const Nav = () => ( ); export default Nav;