1
0
mirror of https://github.com/bobwen-dev/react-templates synced 2025-04-12 00:56:39 +02:00
2014-12-07 15:13:35 +02:00

4 lines
224 B
Plaintext

<div>
<h4 style="cursor:pointer" onClick="()=>this.toggle()">Click to {this.state.open ? 'close' : 'open'}</h4>
<p style="display:{this.state.open?'block':'none'}">This is my paragraph. It opens and closes</p>
</div>