I have two radio buttons, one for SBT and one for Gradle. How do I specify the text for the buttons in Scala.js? My code looks like this:
lazy val toolChoice = fieldset(
legend("Build Tool"),
input(`type`:="radio", name:="tool", value:="sbt", "SBT"),
input(`type`:="radio", name:="tool", value:="gradle", "Gradle")
).render
I see the buttons, but not the text. What am I doing wrong?