Guest User

Untitled

a guest
Jun 24th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. library(shiny)
  2.  
  3. example_html <- HTML('<p><b>foo</b></p>')
  4.  
  5. ui <- fluidPage(
  6. textAreaInput('dummy', label = 'dummy', value = example_html)
  7. )
  8.  
  9. server=function(input,output){
  10.  
  11. }
  12.  
  13. shinyApp(ui,server)
Add Comment
Please, Sign In to add comment