{
getInitialState: function () {
return {open: false};
},
toggle: function() {
this.setState({open: !this.state.open});
}