# NOT RUN {
if (interactive()) {
ui <- fluidPage(
searchbar("sb", "text"),
textOutput("text")
)
server <- function(input, output) {
output$text <- renderText("Hello world!")
}
shinyApp(ui, server)
}
# }
Run the code above in your browser using DataLab