lang/js/ GemJsExamples


Trivial Example 1

  <script src="Gem.umd.js"></script>
  <script>
window.addEventListener("load",_ => {
  const Button = Gem.Button
  const b = Button("hello")
  b.attach()
})
  </script>