R/ui.R

Defines functions ui

library(shiny)

ui <- function(){
	fluidPage(
		sidebarLayout(
			sidebarPanel = sidebarPanel(
				h3("To demonstrate basic shiny deployment with Docker")
			),
			mainPanel = mainPanel(
				shiny::dataTableOutput(outputId = "table")
			)
		)
	)
}
goodfr/shiny_starter documentation built on Dec. 20, 2021, 12:42 p.m.