Skip to content
Permalink
5104c6150d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
18 lines (15 sloc) 472 Bytes
import React, { Component } from "react";
import ParticipantBox from "../participantBox";
export default class ParticipantContainer extends Component {
convertDataToContainer(){
}
render() {
return (
<div className="part-container">
{this.props.data.map( (participant,i) => {
return <ParticipantBox key={"participant_" + i}info={participant}/>
})}
</div>
);
}
}