Semantic UI (React) map accordion in every table row
问题 I am looking for the solution where I would map the data to every table row with accordion where by clicking on it, it would expand the <div> under the table row. this is the mapping of data to TableRow what I have so far: var mappedOrders = sortedOrders.map(order => { return ( <Table.Row key={order._id}> <Table.Cell>{order.address.lastName + " " + order.address.firstName}</Table.Cell> <Table.Cell>{order.payment.vs}</Table.Cell> <Table.Cell> <Button onClick={this.openOrderDetails(order)}