Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <!-- template.html -->
  2. <html>
  3. <head>
  4. {{ headContent() }}
  5. </head>
  6. <body>
  7. <div>
  8. {{ button }}
  9. {{ slider }}
  10. </div>
  11. </body>
  12. </html>
  13.  
  14. ## ui.R ##
  15. htmlTemplate("template.html",
  16. button = actionButton("action", "Action"),
  17. slider = sliderInput("x", "X", 1, 100, 50)
  18. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement