import { useState } from "react"; import AddUrl from "./AddUrl"; import "./ShowUrl.css"; function ShowUrl() { const [short, setShort] = useState(); return (
{ navigator.clipboard.writeText(short); alert("Link copiado"); }} > {short}