├── .babelrc ├── .gitignore ├── README.md ├── package.json └── src ├── __snapshots__ └── index.test.js.snap ├── index.js └── index.test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/fold-render-props/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/fold-render-props/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/fold-render-props/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/fold-render-props/HEAD/package.json -------------------------------------------------------------------------------- /src/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/fold-render-props/HEAD/src/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/fold-render-props/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/fold-render-props/HEAD/src/index.test.js --------------------------------------------------------------------------------