function Button({ text, onClick, type, }: { text: string; onClick: () => void; type: "submit" | "button" | "reset"; }): JSX.Element { return ( ); } export default Button;