PluginProbe
JetFormBuilder — Dynamic Blocks Form Builder / 3.1.0
JetFormBuilder — Dynamic Blocks Form Builder v3.1.0
3.6.5.2 3.6.5.1 3.6.5 3.6.4.2 3.6.4.1 3.6.4 3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 All 130 releases
jetformbuilder / assets / src / package / blocks / components / GeneralFields.js
GeneralFields.js
23 lines 606 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import BlockLabel from './BlockLabel';
2 import BlockName from './BlockName';
3 import BlockDescription from './BlockDescription';
4 import BlockDefaultValue from './BlockDefaultValue';
5
6 const {
7 PanelBody,
8 } = wp.components;
9 const {
10 __,
11 } = wp.i18n;
12
13 function GeneralFields( { hasMacro = true } ) {
14 return <PanelBody title={ __( 'General', 'jet-form-builder' ) }
15 key={ 'jet-form-general-fields' }>
16 <BlockLabel/>
17 <BlockName/>
18 <BlockDescription/>
19 <BlockDefaultValue hasMacro={ hasMacro } />
20 </PanelBody>;
21 }
22
23 export default GeneralFields;