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