4.1.0 • Published 11 months ago

react-copy-the-text v4.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

CopyText

A React component for copying text to the clipboard.

Installation

Usage

import React from 'react';
import CopyText from 'react-copy-the-text';

const App: React.FC = () => {
  const handleCopy = () => {
    console.log('Text copied!');
    // Perform any additional actions upon copying the text
  };

  return (
    <div>
      <CopyText text="Sanju!" onCopy={handleCopy} />
    </div>
  );
};

export default App;