摘要: import Component from "./Component"; import { Form, Button } from "antd"; const onFinish = (values) => { console.log("Success:", values); }; const For 阅读全文
posted @ 2020-11-27 12:11 winyh 阅读(363) 评论(0) 推荐(0) 编辑
摘要: const Component = ({ is, children, ...restProps }) => { const Tag = require("antd")[is]; if (!Tag) return false; return <Tag {...restProps}>{children} 阅读全文
posted @ 2020-11-27 11:33 winyh 阅读(1632) 评论(0) 推荐(0) 编辑