diff --git a/app/jump/page.js b/app/jump/page.js new file mode 100644 index 0000000..82ceffa --- /dev/null +++ b/app/jump/page.js @@ -0,0 +1,21 @@ +"use client"; + +import React, { useState } from "react"; +import { Button, Input } from "antd-mobile"; +import { useRouter } from "next/navigation"; + +export default function Jump() { + const router = useRouter(); + + const [url, setUrl] = useState(""); + return ( +
+ setUrl(val)} + /> + +
+ ); +}