├── .gitignore ├── .npmignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ └── index.tsx ├── assets ├── cats.gif └── lazydog.gif ├── example ├── app.tsx ├── index.html ├── index.tsx └── styled.ts ├── package.json ├── src ├── component.tsx ├── index.ts └── style.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /dist/ 3 | .DS_Store 4 | coverage/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | .DS_Store 4 | example 5 | assets -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.5.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/__tests__/index.tsx -------------------------------------------------------------------------------- /assets/cats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/assets/cats.gif -------------------------------------------------------------------------------- /assets/lazydog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/assets/lazydog.gif -------------------------------------------------------------------------------- /example/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/example/app.tsx -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/example/styled.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/package.json -------------------------------------------------------------------------------- /src/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/src/component.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/src/style.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-reflexible/HEAD/yarn.lock --------------------------------------------------------------------------------