bot-image-moderation-fe/src/components/Button/Button.tsx

9 lines
198 B
TypeScript

export interface ButtonProps {
label: string;
action?: () => void;
}
export default function ImageViewer(props: ButtonProps) {
return <button onClick={props.action}>{props.label}</button>;
}