12 lines
161 B
Plaintext

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