I'm using the react-native-community/react-native-async-storage lib.
For instance, I tried to make something similar to React Web but it did not work
const [list, setList] = useState([]);
useEffect(() => {
AsyncStorage.setItem('list', JSON.stringify(setList));
}, [list]);