import React from "react"; import "./index.less"; export default class SelectedTab extends React.Component { constructor(props) { super(props); this.state = { selectedKey: "0" }; } handleChange(item) { this.setState({ selectedKey: item.key }); this.props.onChange(item); } render() { return (
{ this.props.items.map(item => (
{ this.handleChange(item); }}> {item.name}
)) }
); } }