PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
tableberg / admin / src / components / BooleanSetting.jsx

BooleanSetting.jsx in Tableberg – Simple Gutenberg Table Block 1.1.5, at admin/src/components/BooleanSetting.jsx

18 lines 570 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import BoxContent from "./BoxContent/BoxContent";
2 import ToggleControl from "./ToggleControl";
3
4 function BooleanSetting({ title, content, name, active, onStatusChange }) {
5 return (
6 <div className="tableberg-boolean-settings tableberg-settings-card">
7 <BoxContent title={title} content={content}>
8 <ToggleControl
9 status={active}
10 name={name}
11 onStatusChange={onStatusChange}
12 />
13 </BoxContent>
14 </div>
15 );
16 }
17 export default BooleanSetting;
18