Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { CheckboxControl } from '@wordpress/components';
import { useState } from 'react';
const CheckboxControlExample = () => {
const [ isChecked, setChecked ] = useState( false );
return (
<CheckboxControl
label="Example Checkbox Control"
checked={ isChecked }
onChange={ setChecked }
/>
);
};
export default CheckboxControlExample;