Skip to content

Instantly share code, notes, and snippets.

@aagarw30
Last active January 30, 2017 19:02
Show Gist options
  • Save aagarw30/53ba1657857d6fc6465a63dc0b5e9f5c to your computer and use it in GitHub Desktop.
Save aagarw30/53ba1657857d6fc6465a63dc0b5e9f5c to your computer and use it in GitHub Desktop.
Hello Shiny App
library(shiny)
shinyServer(function(input, output,session){
})
library(shiny)
# Simple shiny layout for demo sake
shinyUI(fluidPage(
titlePanel(title= "Hello Shiny App"),
sidebarLayout(
sidebarPanel(
h5("this is sidebar Panel")
),
mainPanel(
h5("This is the main Panel")
)
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment