Browse Source

登录 修改 注册 人机接口加上 多语言加上

main
lk 6 days ago
parent
commit
a927db3fb5
  1. 13
      src/components/captcha/Verification.tsx

13
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<AProps> = ({ content }) => {
return <Button>{content}</Button>;
};
export default Verification;
Loading…
Cancel
Save