File size: 355 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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;
|