mirror of
https://github.com/bobwen-dev/react-templates
synced 2025-04-12 00:56:39 +02:00
9 lines
198 B
Plaintext
9 lines
198 B
Plaintext
{
|
|
mixins: [React.addons.LinkedStateMixin],
|
|
getInitialState: function () {
|
|
return {open:false};
|
|
},
|
|
toggle: function() {
|
|
this.setState({open:!this.state.open});
|
|
}
|
|
} |