@ -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;