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;