From 2728312097c313646501d45b4b27a001b4dc53f9 Mon Sep 17 00:00:00 2001 From: yezian Date: Sun, 11 Aug 2024 10:37:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=B7=B3=E8=BD=AC=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/jump/page.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 app/jump/page.js 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)} + /> + +
+ ); +}