Files
my-website-v2/frontend/components/ShareLinkButton.tsx

15 lines
321 B
TypeScript
Raw Normal View History

2025-06-29 23:41:20 -04:00
export const ShareLinkButton = function ShareLinkButton({props}) {
const [text. setText] = useState("Share");
const onClickHandler = () => {
navigator.clipboard.writeText(location.href);
setText("Copied to clipboard!");
};
return (
<button onClick={onClickHandler}>
{text}
</button>
)
}