#' @import shiny
app_ui <- function() {
tagList(
# Leave this function for adding external resources
golem_add_external_resources(),
# List the first level UI elements here
fluidPage(
h1("ifrs17"),
mod_data_import_ui("data_import_ui_1")
)
)
}
#' @import shiny
golem_add_external_resources <- function(){
addResourcePath(
'www', system.file('app/www', package = 'ifrs17')
)
tags$head(
golem::activate_js(),
golem::favicon(),
# Add here all the external resources
# If you have a custom.css in the inst/app/www
# Or for example, you can add shinyalert::useShinyalert() here
tags$link(rel="stylesheet", type="text/css", href="www/custom.css"),
tags$script(src="www/script.js"),
tags$script(src="www/handlers.js")
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.