import { WeaFormItem, } from 'ecCom' import { Spin, Button, Timeline } from 'antd' import { i18n } from '../../public/i18n'; import '../../style/common.less'; export default class AnchorDetect extends React.Component { constructor(props) { super(props); this.state = { } } componentDidMount() { } componentWillUnmount() { } render() { const { anchorList, activity, onChange } = this.props; const activityStyle = { color:"#4aacf4" } return (
{ anchorList.map((item,index) => { return( : ''}> onChange(item.id,index)}>{item.title} ) }) }
) } }