👍 Thanks for this!🏷 I have applied any labels matching special text in your issue....
Intended outcome trying to import 2.1.0 and 2.2.0 raising the error ./node_modules/mobx-react/dist/mobxreact.esm.js Attempted import error: 'isObserverBatched' is not exported from 'mobx-react-lite'. Actual outcome Upgrade from 2.0.7 to ...
使用mobx-react提供的observer函数包装需要响应状态变化的组件。这样,当相关的状态发生变化时,组件会自动重新渲染。 // LoginButton.jsimportReactfrom'react';import{Button}from'react-native';import{ observer }from'mobx-react';importauthStorefrom'./AuthStore';constLoginButton=observer(() =>{if(authStore.i...