Mobx
React Native Mobx integration
Install dependencies
$ npm install mobx mobx-reactMobx uses decorators so we have to make a few configuration changes because React Native doesn't support them natively.
$ npm install @babel/plugin-proposal-decoratorsModify our babel.config.js
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [['@babel/plugin-proposal-decorators', {legacy: true}]],
};Last updated
Was this helpful?