├── .eslintrc.json ├── .gitignore ├── README.md ├── lib ├── counterSlice.ts ├── createXStateMiddleware.ts ├── createXStateSlice.ts └── store.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ └── hello.ts └── index.tsx ├── public ├── favicon.ico └── vercel.svg ├── styles ├── Home.module.css └── globals.css ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/README.md -------------------------------------------------------------------------------- /lib/counterSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/lib/counterSlice.ts -------------------------------------------------------------------------------- /lib/createXStateMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/lib/createXStateMiddleware.ts -------------------------------------------------------------------------------- /lib/createXStateSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/lib/createXStateSlice.ts -------------------------------------------------------------------------------- /lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/lib/store.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattpocock/redux-xstate-poc/HEAD/yarn.lock --------------------------------------------------------------------------------