Replies: 1 comment
-
Have you tried renaming them? const { getItem: getAssetName, setItem: setAssetName } = useAsyncStorage('asset_name')
const { getItem: getImei, setItem: setImei } = useAsyncStorage('imei')
const { getItem: getDtTracker, setItem: setDtTracker } = useAsyncStorage('dt_tracker') Alternatively: const assetName = useAsyncStorage('asset_name')
const imei = useAsyncStorage('imei')
const dtTracker = useAsyncStorage('dt_tracker') |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have multiple AsyncStorage keys how can I call those?
Beta Was this translation helpful? Give feedback.
All reactions