import React from "react"; import styles from "./index.less"; import { Steps } from "antd"; const { Step } = Steps; class Demo extends React.Component { state = { current: 0 }; onChange = current => { console.log("onChange:", current); this.setState({ current }); }; render() { const { current } = this.state; return (