Closed matuzalemsteles closed 7 years ago
When I pass in my node some number via JS to be rendered, simply appendChild ignores.
appendChild
<p>Count: {this.state.count}</p>
Result:
<p>Count:</p>
The solution is to convert that number to String, the expected behavior would be the fiber convert to me.
<p>Count: 0</p>
Hey, Your issue has been resolved 🎉, Thanks!
Current behavior
When I pass in my node some number via JS to be rendered, simply
appendChild
ignores.Result:
Expected behavior
The solution is to convert that number to String, the expected behavior would be the fiber convert to me.
Result: