I want to conditionally create a Binding of HTML node.
@dom def maybeEmpty: Binding[Node] = {
if (math.random > 0.5) {
<div>non-empty content</div>
}
}
However the code does not compile.
error: type mismatch;
found : Unit
required: org.scalajs.dom.raw.Node