summaryrefslogtreecommitdiff
path: root/R/ui.R
diff options
context:
space:
mode:
Diffstat (limited to 'R/ui.R')
-rw-r--r--R/ui.R4
1 files changed, 2 insertions, 2 deletions
diff --git a/R/ui.R b/R/ui.R
index 4e4a500..5c6d420 100644
--- a/R/ui.R
+++ b/R/ui.R
@@ -1,4 +1,4 @@
-ui <- shiny::fluidPage(
+ui <- function() { shiny::fluidPage(
# Title.
shiny::titlePanel(shiny::HTML(
paste0("Rnaught: An Estimation Suite for R", shiny::tags$sub("0")))),
@@ -194,4 +194,4 @@ ui <- shiny::fluidPage(
)
)
)
-)
+)}