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