import React from 'react'; import './index.less'; function Step(props) { const { list = [], step = 1 } = props; return (
{list.map((item, index) => { return (
index ? 'over' : ''}`}> {item}
); })}
); } Step.propTypes = {}; export default Step;