We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
useObservable help update data automatically insteadof setState!
useObservable
setState
Online Demo
import React, { useState } from 'react'; import { useObservable, observer } from 'react-use-mobx'; import { render } from 'react-dom'; const App = observer(() => { const [ count1, setCount ] = useState({a: 1}); /** * initialState must be Object!!!!!! */ const count2 = useObservable({a: 1}); return ( <div> <h2>useState</h2> <button onClick={() => setCount({a: count1.a + 1})}>count: {count1.a}</button> <h2>react-use-mobx</h2> <button onClick={() => count2.a++}>count: {count2.a}</button> </div> ); }); render(<App />, document.getElementById('root'));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
react-use-mobx
useObservable
help update data automatically insteadofsetState
!Online Demo
The text was updated successfully, but these errors were encountered: