30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
<div className="game-seat position-2">
|
|
<Seat
|
|
{...this.props.game.seats[1]}
|
|
game={this.props.game}
|
|
onPlayHandSubmit={this.props.onPlayHandSubmit}
|
|
current_user={this.props.current_user}
|
|
onSeatSubmit={this.props.onSeatSubmit} />
|
|
</div>
|
|
<HandToBeat cards={this.props.game.cards_to_beat} />
|
|
<div className="game-seat position-3">
|
|
<Seat
|
|
{...this.props.game.seats[2]}
|
|
game={this.props.game}
|
|
onPlayHandSubmit={this.props.onPlayHandSubmit}
|
|
current_user={this.props.current_user}
|
|
onSeatSubmit={this.props.onSeatSubmit} />
|
|
</div>
|
|
</div>
|
|
<div id="bot">
|
|
<div className="game-seat position-4">
|
|
<Seat
|
|
{...this.props.game.seats[3]}
|
|
game={this.props.game}
|
|
onPlayHandSubmit={this.props.onPlayHandSubmit}
|
|
current_user={this.props.current_user}
|
|
onSeatSubmit={this.props.onSeatSubmit} />
|
|
</div>
|
|
</div>
|
|
</div>
|