import React from 'react' import Button from './button' import ButtonText from './button_text' function handleClick() { console.log('click') return new Promise((resolve) => setTimeout(() => resolve(), 2000)) } export const ComButton = () => ( <> 默认 <>
plain <>
disabled <>
size <> ) export const ComButtonWithLoading = () => ( <> loading <>
onClick promise <> ) export const ComButtonText = () => (
文本按钮
默认 主色 成功 危险
默认 主色 成功 危险
) export default { title: '表单/Button', }