inst/boilerplate/modules/2_ui_and_server_example/ui.R

fluidPage(

  fluidRow(
    'Using a server file allows for reactivity.',
    textInput(
      inputId = 'test_text',
      label = 'Enter Some Text',
      value = '',
      placeholder = 'Type here'
    )
  ),

  fluidRow(
    textOutput('test_text_output')
  )

)
ndrewGele/polish documentation built on March 9, 2021, 6:34 p.m.