+ {Object.entries(options).map(([key, option]) => {
+ const items = option.items || [];
+ return (
+
+
{option.title}
+
+ {items.map((item) => {
+ const isChecked = values[option.name] === item.id;
+ const isDisabled = Boolean(item.disabled);
+ return (
+
+ );
+ })}
+
+
+ );
+ })}
+
+
Run this Command:
+
{command}
+
+
+ );
+};