react-templates/playground/samples/rt-if.rt

7 lines
244 B
Plaintext
Raw Normal View History

2017-06-29 09:47:09 +02:00
<div>
<h4 style="cursor:pointer" onClick="()=>this.toggle()">
Click to {this.state.open ? 'close' : 'open'}
</h4>
<p rt-if="this.state.open">This is my paragraph. It opens and
closes</p>
</div>