├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src └── index.ts ├── test └── useInterpret.test.tsx ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/xstate-sync-to-context/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/xstate-sync-to-context/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/xstate-sync-to-context/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/xstate-sync-to-context/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/useInterpret.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/xstate-sync-to-context/HEAD/test/useInterpret.test.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/xstate-sync-to-context/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/xstate-sync-to-context/HEAD/yarn.lock --------------------------------------------------------------------------------