From a927db3fb5a1f657b45bb46b161f5b917b78cf22 Mon Sep 17 00:00:00 2001 From: lk Date: Sat, 14 Sep 2024 16:42:40 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=20=E4=BF=AE=E6=94=B9=20=20?= =?UTF-8?q?=E6=B3=A8=E5=86=8C=20=20=20=E4=BA=BA=E6=9C=BA=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E5=8A=A0=E4=B8=8A=20=20=E5=A4=9A=E8=AF=AD=E8=A8=80=E5=8A=A0?= =?UTF-8?q?=E4=B8=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/captcha/Verification.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/components/captcha/Verification.tsx diff --git a/src/components/captcha/Verification.tsx b/src/components/captcha/Verification.tsx new file mode 100644 index 0000000..e4a7971 --- /dev/null +++ b/src/components/captcha/Verification.tsx @@ -0,0 +1,13 @@ +// A.tsx +import React from "react"; +import { Button } from "antd"; + +interface AProps { + content: string; +} + +const Verification: React.FC = ({ content }) => { + return ; +}; + +export default Verification;