├── .gitignore ├── .npmignore ├── README.md ├── index.js ├── package.json ├── src └── index.tsx ├── static └── xstate-viz-rn.gif ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | yarn-error.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpetzel/react-native-flipper-xstate/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpetzel/react-native-flipper-xstate/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpetzel/react-native-flipper-xstate/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpetzel/react-native-flipper-xstate/HEAD/package.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpetzel/react-native-flipper-xstate/HEAD/src/index.tsx -------------------------------------------------------------------------------- /static/xstate-viz-rn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpetzel/react-native-flipper-xstate/HEAD/static/xstate-viz-rn.gif -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpetzel/react-native-flipper-xstate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpetzel/react-native-flipper-xstate/HEAD/yarn.lock --------------------------------------------------------------------------------