diff options
Diffstat (limited to 'tests/reactive.ur')
-rw-r--r-- | tests/reactive.ur | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/reactive.ur b/tests/reactive.ur index cb49541f..95839c7d 100644 --- a/tests/reactive.ur +++ b/tests/reactive.ur @@ -1,4 +1,5 @@ fun main () : transaction page = - x <- source (); - y <- source (); - return <xml><body>Hi!</body></xml> + x <- source <xml>TEST</xml>; + return <xml><body> + <dyn signal={signal x}/> + </body></xml> |