摘要:
import Component from "./Component"; import { Form, Button } from "antd"; const onFinish = (values) => { console.log("Success:", values); }; const For 阅读全文
摘要:
const Component = ({ is, children, ...restProps }) => { const Tag = require("antd")[is]; if (!Tag) return false; return <Tag {...restProps}>{children} 阅读全文