Blockr teal module.
You can install the development version of blockr.teal like so:
# install.packages("remotes")
remotes::install_github("blockr-org/blockr.teal")
library(blockr.teal)
library(teal)
options("teal.bs_theme" = bslib::bs_theme(5L))
app <- init(
data = teal_data(iris = iris, cars = cars),
modules = list(
blockr_module()
)
)
shinyApp(app$ui, app$server)