Shiny

title: "Shiny Web App"
format: html
server: shiny
library(shiny)

textInput("name", "What is your name?")
numericInput("age", "How old are you?", NA, min = 0, max = 150)
  • Code chunk with #| context: server for server-side code