Profile.tsx 463 B

1234567891011121314151617181920
  1. import { Card } from "antd";
  2. const ProfileWidget = () => {
  3. return (
  4. <>
  5. <Card title="简介" bordered={false} style={{ width: "100%" }}>
  6. <p>Card content</p>
  7. <p>Card content</p>
  8. <p>Card content</p>
  9. </Card>
  10. <Card title="团队" bordered={false} style={{ width: "100%" }}>
  11. <p>Card content</p>
  12. <p>Card content</p>
  13. <p>Card content</p>
  14. </Card>
  15. </>
  16. );
  17. };
  18. export default ProfileWidget;