function Button({ text, onClick, }: { text: string; onClick: () => void; }): JSX.Element { return ( ); } export default Button;