aboutsummaryrefslogtreecommitdiff
path: root/modern/src/attributes/useCommandAttributes.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/attributes/useCommandAttributes.js')
-rw-r--r--modern/src/attributes/useCommandAttributes.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/modern/src/attributes/useCommandAttributes.js b/modern/src/attributes/useCommandAttributes.js
new file mode 100644
index 00000000..1212d283
--- /dev/null
+++ b/modern/src/attributes/useCommandAttributes.js
@@ -0,0 +1,11 @@
+import { useMemo } from 'react';
+
+export default (t) => useMemo(() => ({
+ custom: [
+ {
+ key: 'data',
+ name: t('commandData'),
+ type: 'string',
+ },
+ ],
+}), [t]);