clean: rf to find things easier

This commit is contained in:
Aidan 2025-03-28 00:03:47 -04:00
parent 3cf2b0f4cd
commit 2710b278a3
11 changed files with 326 additions and 361 deletions

View file

@ -1,13 +1,13 @@
import React from 'react';
import Link from 'next/link';
import React from 'react'
import Link from 'next/link'
interface MusicInfoButtonProps {
interface ButtonProps {
href: string;
label: string;
icon?: React.ElementType;
}
const MusicInfoButton: React.FC<MusicInfoButtonProps> = ({ href, label, icon }) => {
const Button: React.FC<ButtonProps> = ({ href, label, icon }) => {
return (
<Link
href={href}
@ -19,4 +19,4 @@ const MusicInfoButton: React.FC<MusicInfoButtonProps> = ({ href, label, icon })
);
};
export default MusicInfoButton;
export default Button