Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-clickcopy

Click text to copy it to the system clipboard

readme

react-clickcopy

Copy a piece of text by clicking on it.

Install

npm install --save react-clickcopy
yarn add react-clickcopy

Usage

export default () => (
  <h3><ClickCopy>http://localhost:8080</CopyClick><h3>
);

The component itself does not validate its children. The text extrapolation is handled natively by the browser through Range.selectNodeContents and Document.execCommand('copy').