Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created August 1, 2017 22:31
Show Gist options
  • Save Kamilnaja/b9d682ae935b3580f4b2c44af44ae53e to your computer and use it in GitHub Desktop.
Save Kamilnaja/b9d682ae935b3580f4b2c44af44ae53e to your computer and use it in GitHub Desktop.
var MenuExample = React.createClass({
getInitialState: function () {
return {focused: 0};
},
clicked: function (index){
this.setState({focused: index})
},
render: function () {
var self = this;
return (
<div>
<ul>{this.props.items.map(function (m, index){
var style = '';
if (self.state.focused == index) {
style = 'focused';
}
return <li className={style} onClick={self.clicked.bind(self, index)}>
{m}
</li>;
}) }
</ul>
<p>Selected: {this.props.items[this.state.focused]}</p>
</div>
)
}
});
ReactDOM.render(
<MenuExample items={['Home', 'Services', 'About', 'Contact']}/>,
document.getElementById('container')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment