Last active
June 25, 2018 21:25
-
-
Save Danetag/9701ebc44457494c371ab2a8d7cacfb3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| render() { | |
| const { openedMenu, onOpenMenu, state } = this.props; | |
| return <button | |
| id="menu-hamburger" | |
| aria-controls="menu-mobile" | |
| aria-expanded={openedMenu} | |
| aria-haspopup={true} | |
| className={styles.hamburgerIcon} | |
| onClick={onOpenMenu} | |
| > | |
| Open menu | |
| </button> | |
| } | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment