UNPKG

react-native-unit-components

Version:

Unit React Native components

17 lines 428 B
import { NativeModules } from 'react-native'; const { UNStoreManager } = NativeModules; class UNStoreManagerHelper { static saveValue(key, value) { UNStoreManager.saveValue(key, value); } static async getValue(key) { return UNStoreManager.getValue(key); } static cleanValue(key) { UNStoreManager.cleanValue(key); } } export default UNStoreManagerHelper; //# sourceMappingURL=UNStoreManagerHelper.js.map