Код CheckboxWrapperexport const CheckboxWrapper: React.FC<ICheckboxWrapperProps> = (props) => {const [checked, setChecked] = React.useState<boolean>(false);const handleChange = () => {setChecked(!checked);};return (<div style={{ padding: '20px 10px 8px 10px' }}>{props.children({checked,onChange: handleChange,})}</div>);};
Код extraContentStyleconst extraContentStyle = { backgroundColor: '#00B956', color: '#FFF', padding: '5px'};