1.0.0 • Published 4 years ago

@wenmu/react-steps v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

react-steps

一个类 antd 的步骤组件,支持浏览器兼容性

效果图

steps.png

安装

npm i react-steps

使用方式

<section style={{ width: 500 }}>
  <Steps current={1}>
    <Step title="开始" description="描述信息" />
    <Step title="进行中" description="描述信息" />
    <Step title="成功" description="描述信息" />
  </Steps>
  <Steps current={1} size="big" style={{ marginTop: 40 }}>
    <Step title="开始" description="描述信息" />
    <Step title="进行中" description="描述信息" />
    <Step title="成功" description="描述信息" />
  </Steps>
</section>