1
0
mirror of https://github.com/bobwen-dev/react-templates synced 2025-04-12 00:56:39 +02:00
2014-12-10 09:46:59 +02:00

8 lines
155 B
Plaintext

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