2017-11-22 16:46:18 -08:00

14 lines
165 B
Plaintext

class MyComponent {
onCreate() {
this.state = {
count: 0
};
}
}
<div.root>
<span>
${state.count}
</span>
</div>