├── .gitignore ├── CHANGELOG.md ├── LICENCE ├── README.md ├── demo-src ├── App.css ├── App.tsx ├── favicon.svg ├── index.css ├── logo.svg └── main.tsx ├── index.html ├── package.json ├── src └── index.ts ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 0.1.0 4 | 5 | - First release 6 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/README.md -------------------------------------------------------------------------------- /demo-src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/demo-src/App.css -------------------------------------------------------------------------------- /demo-src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/demo-src/App.tsx -------------------------------------------------------------------------------- /demo-src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/demo-src/favicon.svg -------------------------------------------------------------------------------- /demo-src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/demo-src/index.css -------------------------------------------------------------------------------- /demo-src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/demo-src/logo.svg -------------------------------------------------------------------------------- /demo-src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/demo-src/main.tsx -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-states/HEAD/vite.config.ts --------------------------------------------------------------------------------