| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | import React from 'react' |
||
| 5 | |||
| 6 | class HelpControl extends React.Component { |
||
| 7 | handleButtonClick() { |
||
| 8 | location.href = |
||
| 9 | 'https://arizona-primo.hosted.exlibrisgroup.com/primo-explore/account?vid=01UA§ion=overview' |
||
| 10 | } |
||
| 11 | |||
| 12 | render() { |
||
| 13 | return ( |
||
| 14 | <div className="header__control"> |
||
| 15 | <button |
||
| 16 | className="header__control-button" |
||
| 17 | onClick={this.handleButtonClick} |
||
| 18 | > |
||
| 19 | <div className="header__control-icon"> |
||
| 20 | <ReactSVG path={account} /> |
||
| 21 | </div> |
||
| 22 | My account |
||
| 23 | </button> |
||
| 24 | </div> |
||
| 25 | ) |
||
| 30 |