readme
属性名 | 类型 | 是否必选 | 描述 |
---|---|---|---|
children | React.ReactNode | 是 | 按钮文本 |
type | "primary" | "secondary" | 否 | 按钮类型 |
/src/components/HelloCodeTitle.js
function HelloCodeTitle(props) {
return <h1>你好,{props.name}</h1>;
}
playground
abc
<Button type="primary">LuoKing</Button>