asyncstorage react native

JavaScript
import { AsyncStorage } from 'react-native';

await AsyncStorage.setItem('@Store:key', 'Example.');

const data = await AsyncStorage.getItem('@Store:key');
//data = "Example."
import AsyncStorage from '@react-native-community/async-storage';npx react-native init MyApp --template react-native-template-typescript

Source

Also in JavaScript: