From 9ddc9c3dbda7da985e33a9f38bc8883af1eb550c Mon Sep 17 00:00:00 2001 From: yezian Date: Fri, 9 Aug 2024 20:42:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=B5=8B=E8=AF=95=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/tool/wechat_test/page.jsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 app/tool/wechat_test/page.jsx diff --git a/app/tool/wechat_test/page.jsx b/app/tool/wechat_test/page.jsx new file mode 100644 index 0000000..99cf4c3 --- /dev/null +++ b/app/tool/wechat_test/page.jsx @@ -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 WechatTest() { + const router = useRouter(); + + const [url, setUrl] = useState(""); + return ( +
+ setUrl(val)} + /> + +
+ ); +}