Clarified the rules
This commit is contained in:
@@ -29,12 +29,13 @@ class CommonLinks extends React.Component {
|
||||
return (
|
||||
<div className='panel'>
|
||||
<p className='mobile centered'><Link to='/profile' onClick={this.props.onClickProfile}>Your Kingdom</Link></p>
|
||||
<p className='mobile centered'><Link to='/equipment' onClick={this.props.onClickCombatLog}>Your Equipment</Link></p>
|
||||
<p className='mobile centered'><Link to='/equipment' onClick={this.props.onClickEquipment}>Your Equipment</Link></p>
|
||||
<p className='mobile centered'><Link to='/ladder' onClick={this.props.onClickLadder}>Attack (Game Ladder)</Link></p>
|
||||
<p className='mobile centered'><Link to='/combatlog' onClick={this.props.onClickCombatLog}>Combat Log</Link></p>
|
||||
<p className='mobile centered'><Link to='/passwordchange' onClick={this.props.onClickPasswordChange}>Change Password</Link></p>
|
||||
<p className='mobile centered'><Link to='/tasklist' onClick={this.props.onClickTaskList}>Task List</Link></p>
|
||||
<p className='mobile centered'><Link to='/patronlist' onClick={this.props.onClickTaskList}>Patron List</Link></p>
|
||||
<p className='mobile centered'><Link to='/patronlist' onClick={this.props.onClickPatronList}>Patron List</Link></p>
|
||||
<p className='mobile centered'><Link to='/rules' onClick={this.props.onClickRules}>Rules</Link></p>
|
||||
|
||||
<Extra />
|
||||
|
||||
@@ -49,7 +50,8 @@ class CommonLinks extends React.Component {
|
||||
<p className='mobile centered'><Link to='/passwordrecover' onClick={this.props.onClickPasswordRecover}>Recover Password</Link></p>
|
||||
<p className='mobile centered'><Link to='/ladder' onClick={this.props.onClickLadder}>Game Ladder</Link></p>
|
||||
<p className='mobile centered'><Link to='/tasklist' onClick={this.props.onClickTaskList}>Task List</Link></p>
|
||||
<p className='mobile centered'><Link to='/patronlist' onClick={this.props.onClickTaskList}>Patron List</Link></p>
|
||||
<p className='mobile centered'><Link to='/patronlist' onClick={this.props.onClickPatronList}>Patron List</Link></p>
|
||||
<p className='mobile centered'><Link to='/rules' onClick={this.props.onClickRules}>Rules</Link></p>
|
||||
|
||||
<Extra />
|
||||
</div>
|
||||
@@ -63,12 +65,15 @@ CommonLinks.propTypes = {
|
||||
|
||||
onClickSignup: PropTypes.func,
|
||||
onClickLogin: PropTypes.func,
|
||||
onClickPasswordRecover: PropTypes.func,
|
||||
onClickHome: PropTypes.func,
|
||||
onClickProfile: PropTypes.func,
|
||||
onClickLadder: PropTypes.func,
|
||||
onClickPasswordChange: PropTypes.func,
|
||||
onClickTaskList: PropTypes.func
|
||||
onClickPasswordRecover: PropTypes.func,
|
||||
onClickProfile: PropTypes.func,
|
||||
onClickEquipment: PropTypes.func,
|
||||
onClickLadder: PropTypes.func,
|
||||
onClickCombatLog: PropTypes.func,
|
||||
onClickTaskList: PropTypes.func,
|
||||
onClickPatronList: PropTypes.func,
|
||||
onClickRules: PropTypes.func
|
||||
};
|
||||
|
||||
function mapStoreToProps(store) {
|
||||
|
||||
Reference in New Issue
Block a user