13 lines
154 B
Plaintext

class {
onCreate() {
this.state = {
show: true
};
}
}
<if(state.show)>
<h1>Header</h1>
<div>Body</div>
</if>