Wordpress CheckboxControl的ES5代码是什么样的

时间:2019-11-16 14:31:54

标签: reactjs wordpress ecmascript-5

我是React和Wordpress Gutenberg区块的新手。我想知道下面的代码在ES5中是什么样子。

    const MyCheckboxControl = () => (
        const [ isChecked, setChecked ] = useState( true );
        <CheckboxControl
            heading="User"
            label="Is author"
            help="Is the user a author or not?"
            checked={ isChecked }
            onChange={ setChecked }
        />
    ) );

0 个答案:

没有答案