├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── example ├── app.js └── webpack.js ├── package.json ├── src ├── index.spec.tsx ├── index.ts └── jsx.spec.tsx ├── tsconfig.es2015.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/SECURITY.md -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/example/app.js -------------------------------------------------------------------------------- /example/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/example/webpack.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/package.json -------------------------------------------------------------------------------- /src/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/src/index.spec.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/jsx.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/src/jsx.spec.tsx -------------------------------------------------------------------------------- /tsconfig.es2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/tsconfig.es2015.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/react-free-style/HEAD/tslint.json --------------------------------------------------------------------------------