Skip to content

Instantly share code, notes, and snippets.

@colinf
Last active July 15, 2016 09:54
Show Gist options
  • Save colinf/6fb47255dd7cec6e40fc78488c13dc06 to your computer and use it in GitHub Desktop.
Save colinf/6fb47255dd7cec6e40fc78488c13dc06 to your computer and use it in GitHub Desktop.
Main menu links using Cerebral signals ( see http://j.mp/2af4Q7o and http://bit.ly/29yR51I )
<ul className="pure-menu-list">
<li className={classnames({'pure-menu-item': true, 'pure-menu-selected': currentPage == 'TEAMS'})}>
<a className="pure-menu-link"
on-click={() => signals.teams.opened()}
>
Teams
</a>
</li>
<li className={classnames({'pure-menu-item': true, 'pure-menu-selected': currentPage == 'ABOUT'})}>
<a className="pure-menu-link"
on-click={() => signals.about.opened()}
>
About
</a>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment