Skip to content

Instantly share code, notes, and snippets.

@interaminense
Created February 26, 2018 02:58
Show Gist options
  • Save interaminense/7e09718334865fa56ebdeddaf7b37959 to your computer and use it in GitHub Desktop.
Save interaminense/7e09718334865fa56ebdeddaf7b37959 to your computer and use it in GitHub Desktop.
Mathematics RenderInitGame
/**
* Render UI init game
*/
renderInitGame() {
return (
<Layout>
<Layout.Header>{LANGUAGE.initGame}</Layout.Header>
<Layout.Body>
{this.renderUIButtons()}
<Button
style={'primary'}
data-onclick={this._handleClickStartGame.bind(this)}>
{LANGUAGE.startGame}
</Button>
</Layout.Body>
<Layout.Footer />
</Layout>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment