UI

textOutput()

server

renderText()



textOutput(outputId = "text")

output$text <- renderText(paste0("Selected species is ", input$iris_species))



              

UI

verbatimTextOutput()

server

renderPrint()




UI

tableOutput()

server

renderTable()




UI

DT::dataTableOutput()

server

DT::renderDataTable()


UI

plotOutput()

server

renderPlot()




UI

imageOutput()

server

renderImage()