interface ButtonProps { text: string; } const Button = ({ text }: ButtonProps) => { return ( ); }; export default Button;