Skip to content

useClipboard

A hook to copy text to the clipboard.

import { useClipboard } from '@fintech-sandpit/ui/react';
const { copy } = useClipboard();
const handleClick = () => {
copy('Hello, world!');
};
return (
<button onClick={handleClick}>
Copy to clipboard
</button>
);