# NOT RUN {
if (interactive()) {
ui <- fluidPage(
textInput(inputId = "inp1", label = "input"),
div(h1("Not tabable")) %>%
make_tabable(tab_index = -1),
div(h2("Tabable ! with priority")) %>%
make_tabable(tab_index = 1),
div(h2("Simply Tabable")) %>%
make_tabable(tab_index = 0)
)
server <- function(input, output, session) {}
shinyApp(ui = ui, server = server)
}
# }
Run the code above in your browser using DataLab