import type { FC } from 'react' type ButtonProps = { label: string } export const Button: FC = ({ label }) => { const handleClick = () => { console.log(label) } return ( ) }