├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── HISTORY.md ├── MIT-LICENSE ├── README.md ├── bsconfig.json ├── package.json ├── src ├── ReactCompat.res └── ReactCompat.resi └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodyowl/rescript-react-compat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: ["bloodyowl"] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodyowl/rescript-react-compat/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodyowl/rescript-react-compat/HEAD/HISTORY.md -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodyowl/rescript-react-compat/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodyowl/rescript-react-compat/HEAD/README.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodyowl/rescript-react-compat/HEAD/bsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodyowl/rescript-react-compat/HEAD/package.json -------------------------------------------------------------------------------- /src/ReactCompat.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodyowl/rescript-react-compat/HEAD/src/ReactCompat.res -------------------------------------------------------------------------------- /src/ReactCompat.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodyowl/rescript-react-compat/HEAD/src/ReactCompat.resi -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloodyowl/rescript-react-compat/HEAD/yarn.lock --------------------------------------------------------------------------------