Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

shaoting0730/mobxRN

Repository files navigation

mobxRN

react native 0.57以上版本集成mobx


yarn add mobx mobx-react

   yarn add @babel/core --dev
   yarn add @babel/plugin-proposal-decorators --dev
   yarn add @babel/plugin-transform-runtime --dev
   yarn add @babel/runtime --dev

3.修改babel.config.js文件:

{
  "presets": ["module:metro-react-native-babel-preset"],
  "plugins": [
    ["@babel/plugin-proposal-decorators", { "legacy": true }],
    ["@babel/transform-runtime", {
      "helpers": true,
      "regenerator": false
    }]
  ]
}