import React from 'react'; interface ActionButtonProps { onClick: () => void; label: string; } const ActionButton: React.FC = ({ onClick, label }) => { return ( ); }; export default ActionButton;