? use-clipboard-api

useClipboardApi() is a React Hook that consumes Web Clipboard API.

version MIT License downloads


Motivation

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.

License

MIT License © helderburato

GitHub

View Github