├── .babelrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── __tests__ ├── index-flowtest.js └── index.spec.js ├── package.json ├── src ├── index.js └── index.js.flow └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/react-copy-write/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/react-copy-write/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/react-copy-write/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | __tests__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/react-copy-write/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/react-copy-write/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index-flowtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/react-copy-write/HEAD/__tests__/index-flowtest.js -------------------------------------------------------------------------------- /__tests__/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/react-copy-write/HEAD/__tests__/index.spec.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/react-copy-write/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/react-copy-write/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/react-copy-write/HEAD/src/index.js.flow -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/react-copy-write/HEAD/yarn.lock --------------------------------------------------------------------------------