Fix URL across both ends #16

Merged
anthony merged 5 commits from fixurl into main 2024-12-25 14:53:21 +00:00
Showing only changes of commit 459a96f711 - Show all commits

View file

@ -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<string>("");
const [shortenedUrl, setShortenedUrl] = useState<string>("");
const [showInput, setShowInput] = useState<boolean>(false);