├── .babelrc ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── package.json ├── rollup.config.js └── src ├── __tests__ ├── __snapshots__ │ └── index.js.snap └── index.js └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/react-pattern-match/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/react-pattern-match/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/react-pattern-match/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/react-pattern-match/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/react-pattern-match/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/react-pattern-match/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/react-pattern-match/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/index.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/react-pattern-match/HEAD/src/__tests__/__snapshots__/index.js.snap -------------------------------------------------------------------------------- /src/__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/react-pattern-match/HEAD/src/__tests__/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkh44/react-pattern-match/HEAD/src/index.js --------------------------------------------------------------------------------