Mercurial > urweb
view demo/react.ur @ 2163:598a5f781d39
Add onChange handler to radioOption
author | Julian Squires <julian@cipht.net> |
---|---|
date | Thu, 07 May 2015 16:12:06 -0400 |
parents | e6bc6bbd7a32 |
children |
line wrap: on
line source
fun main () = s <- source "You didn't click it yet."; return <xml><body> <button value="Click me!" onclick={fn _ => set s "Now you clicked it."}/><br/> <dyn signal={v <- signal s; return <xml>{[v]}</xml>}/> </body></xml>