Hide Join Games when no games to join.

This commit is contained in:
2020-02-07 10:42:07 -08:00
parent dd38ed5615
commit ab7a0991b3

View File

@@ -29,9 +29,11 @@ class CreateOrJoin extends React.Component {
<Button size='large' className='shadow' onClick={this.props.showNewGame}>
New Game
</Button>
<Button size='large' className='shadow' onClick={this.props.showJoinGame}>
Join Game
</Button>
{this.props.start.start.games.length > 0 ? (
<Button size='large' className='shadow' onClick={this.props.showJoinGame}>
Join Game
</Button>
) : (<Fragment />)}
</Fragment>
);
}