import * as React from "react"; import GroupItem from "../groupItem"; class GroupLeft extends React.Component { constructor(props) { super(props); this.state = { style: {} } } componentDidMount(): void { } onClick(index) { this.props.onChoose ? this.props.onChoose(index) : '' } render() { let groupList = this.props.data; let currentIndex = this.props.select; return ( ); } } export default GroupLeft;