react native authentication with jwt
npm install react-native-auth
important!!
yarn add @react-native-community/async-storage
import { setAuthToken, storageSetItem,storageGetItem,storageClear, storageRemoveItem} from 'react-native-auth';
// ...
setAuthToken(token)
storageSetItem('deneme','12345')
storageGetItem('deneme').then(res=>console.log(res))
storageClear()
storageRemoveItem('deneme')
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT