import React from 'react'; import Link from 'next/link'; interface MusicInfoButtonProps { href: string; label: string; } const MusicInfoButton: React.FC = ({ href, label }) => { return ( {label} ); }; export default MusicInfoButton;