type ExampleButtonProps = { onClick: () => void; text: string; }; export function ExampleButton(props: ExampleButtonProps) { const { onClick, text } = props; return ( ); }