# NOT RUN {
if (interactive()) {
library(shiny)
library(gentelellaShiny)
shinyApp(
ui = gentelellaPageCustom(
gentelellaBody(
tabSetPanel(
id = "tabset1",
tabPanel(
tabName = "Home",
active = TRUE,
"Raw denim you probably haven't heard of
them jean shorts Austin. Nesciunt tofu stumptown
aliqua, retro synth master cleanse. Mustache
cliche tempor, williamsburg carles vegan helvetica.
Reprehenderit butcher retro keffiyeh dreamcatcher synth.
Cosby sweater eu banh mi, qui irure terr."
),
tabPanel(
tabName = "Profile",
active = FALSE,
sliderInput(
"obs",
"Number of observations:",
min = 0,
max = 1000,
value = 500
),
plotOutput("distPlot")
)
)
)
),
server = function(input, output, session) {
output$distPlot <- renderPlot({
hist(rnorm(input$obs))
})
}
)
}
# }
Run the code above in your browser using DataLab