Swap marine and alien tables

This commit is contained in:
Chris Blanchard 2015-09-17 12:47:37 +01:00
parent 3d7d6ca030
commit c5b2d10356
1 changed files with 4 additions and 4 deletions

View File

@ -73,17 +73,17 @@ var GatherTeams = React.createClass({
<div className="col-sm-6"> <div className="col-sm-6">
<div className="panel panel-default"> <div className="panel panel-default">
<div className="panel-heading"> <div className="panel-heading">
Aliens Marines
</div> </div>
<GathererList gather={this.props.gather} team="alien" /> <GathererList gather={this.props.gather} team="marine" />
</div> </div>
</div> </div>
<div className="col-sm-6"> <div className="col-sm-6">
<div className="panel panel-default"> <div className="panel panel-default">
<div className="panel-heading"> <div className="panel-heading">
Marines Aliens
</div> </div>
<GathererList gather={this.props.gather} team="marine" /> <GathererList gather={this.props.gather} team="alien" />
</div> </div>
</div> </div>
</div> </div>