LoginSignup
8
3

More than 5 years have passed since last update.

mobx を ReactNative にセットアップ

Posted at

に書かれた通りなのだけど、2017年3月時点ではもうちょっと追加する項目が少なくて済む。

yarn add mobx mobx-react
yarn add babel-plugin-transform-decorators-legacy --dev

あとは .babelrc を変更

{
 'presets': ['react-native'],
 'plugins': ['transform-decorators-legacy']
}

It works!

もちろん decorator の syntax 使わなければ特に何もすることは無い。

8
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
3