aboutsummaryrefslogtreecommitdiff
path: root/modern/src/attributes/geofenceAttributes.js
blob: d9f512f154d461ecd40814e4e0d4c7e2cd4a5205 (plain)
1
2
3
4
5
6
7
8
import { useMemo } from 'react';

export const useGeofenceAttributes = (t) => useMemo({
  speedLimit: {
    name: t('attributeSpeedLimit'),
    type: 'string',
  },
}, [t]);