blob: 53a299e1106625295e382d1bc94f3247f0db9edf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { useMemo } from 'react';
export default (t) => useMemo(() => ({
'processing.copyAttributes': {
name: t('attributeProcessingCopyAttributes'),
type: 'string',
},
'decoder.timezone': {
name: t('sharedTimezone'),
type: 'string',
},
}), [t]);
|