├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── dist └── .gitkeep ├── example ├── .babelrc ├── dist.js ├── example.html ├── example.js └── package.json ├── package.json └── src └── react-copy-button-wrapper.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastak/react-copy-button-wrapper/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastak/react-copy-button-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | example 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastak/react-copy-button-wrapper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastak/react-copy-button-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastak/react-copy-button-wrapper/HEAD/example/.babelrc -------------------------------------------------------------------------------- /example/dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastak/react-copy-button-wrapper/HEAD/example/dist.js -------------------------------------------------------------------------------- /example/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastak/react-copy-button-wrapper/HEAD/example/example.html -------------------------------------------------------------------------------- /example/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastak/react-copy-button-wrapper/HEAD/example/example.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastak/react-copy-button-wrapper/HEAD/example/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastak/react-copy-button-wrapper/HEAD/package.json -------------------------------------------------------------------------------- /src/react-copy-button-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastak/react-copy-button-wrapper/HEAD/src/react-copy-button-wrapper.js --------------------------------------------------------------------------------