diff --git a/frontend/src/components/URLShortener/URLShortener.tsx b/frontend/src/components/URLShortener/URLShortener.tsx index 492a964..9f52852 100644 --- a/frontend/src/components/URLShortener/URLShortener.tsx +++ b/frontend/src/components/URLShortener/URLShortener.tsx @@ -4,7 +4,7 @@ import axios from "axios"; import { ToastContainer, toast } from "react-toastify"; import "react-toastify/dist/ReactToastify.css"; -export default function () { +export default function URLShortener() { const [url, setUrl] = useState(""); const [shortenedUrl, setShortenedUrl] = useState(""); const [showInput, setShowInput] = useState(false);