import React from 'react' import "./index.less" export default class SmallTab extends React.Component { constructor(props) { super(props) this.state = { selectedItem: this.props.items[0] } } render() { const { selectedItem } = this.state return (
{ this.props.items.map(item => ( {this.setState({selectedItem: item}); this.props.onChange(item)}}>{item.title} )) }
) } }