19 lines
286 B
Plaintext

class {
onCreate() {
this.state = {
swapped: false
};
}
}
<div.root>
<if(state.swapped)>
<world key="world"/>
<hello key="hello"/>
</if>
<else>
<hello key="hello"/>
<world key="world"/>
</else>
</div>