Motivation
- Easy way to use Clipboard API into your React project;
Usage
To start using the use-clipboard-api
in your project, first install in your project:
yarn add use-clipboard-api
or npm install use-clipboard-api
Copy to clipboard with useClipboard:
import useClipboard from 'use-clipboard-api';
function App() {
const [value, copy] = useClipboardApi();
return <button onClick={() => copy('Text to be copied.')}>Copy me!</button>;
}
export default App;
Contributing
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
Bugs and Sugestions
Report bugs or do suggestions using the issues.