import React from 'react'; import './index.less'; import Module from '../Module'; import IconButton from '../IconButton'; import ProgressText from '../ProgressText'; function List(props) { const { style, title, subTitle, list = [] } = props; return (
{title} {subTitle}
{list.map(item => { return (
{item.part}
{item.title}
); })}
); } List.propTypes = {}; export default List;