├── .babelrc ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── index.js └── render-with-params.js └── test └── render-with-params.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicheleBertoli/react-render-with-params/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicheleBertoli/react-render-with-params/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicheleBertoli/react-render-with-params/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicheleBertoli/react-render-with-params/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicheleBertoli/react-render-with-params/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicheleBertoli/react-render-with-params/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './render-with-params' 2 | -------------------------------------------------------------------------------- /src/render-with-params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicheleBertoli/react-render-with-params/HEAD/src/render-with-params.js -------------------------------------------------------------------------------- /test/render-with-params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicheleBertoli/react-render-with-params/HEAD/test/render-with-params.js --------------------------------------------------------------------------------