# 迷你版 - order: 1 迷你版的步骤条,通过设置 `` 启用. --- ````jsx import { Steps } from 'antd'; const Step = Steps.Step; const steps = [{ status: 'finish', title: '已完成' }, { status: 'process', title: '进行中' }, { status: 'wait', title: '待运行' }, { status: 'wait', title: '待运行' }].map((s, i) => ); ReactDOM.render({steps}, mountNode); ````