11 lines
137 B
Plaintext

class {
onInput(input) {
this.state = {
name: null
}
}
}
<div>
Hello ${state.name || ''}!
</div>