├── .gitignore ├── .npmignore ├── .prettierrc ├── README.md ├── index.test.tsx ├── index.tsx ├── jest.config.js ├── package.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | yarn-error.log 4 | index.js 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.test.tsx 2 | .prettierrc 3 | jest.config.js 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchipi/react-state-tree/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchipi/react-state-tree/HEAD/README.md -------------------------------------------------------------------------------- /index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchipi/react-state-tree/HEAD/index.test.tsx -------------------------------------------------------------------------------- /index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchipi/react-state-tree/HEAD/index.tsx -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchipi/react-state-tree/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchipi/react-state-tree/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchipi/react-state-tree/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchipi/react-state-tree/HEAD/yarn.lock --------------------------------------------------------------------------------