-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
23 lines (18 loc) · 872 Bytes
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -------------------------------------------------
# -- FRAMEWORK ui.R --
# -------------------------------------------------
# NOTEs: --
# Program code goes in "program" directory files --
# -------------------------------------------------
# ***** DO NOT EDIT THIS FILE ***** --
# -------------------------------------------------
library(shinydashboard)
periscope:::fw_reset_app_options()
source(paste("program", "ui_sidebar.R", sep = .Platform$file.sep),
local = TRUE)
source(paste("program", "ui_body.R", sep = .Platform$file.sep),
local = TRUE)
dashboardPage(periscope:::fw_create_header(),
periscope:::fw_create_sidebar(),
#dashboardBody(dashboardthemes::shinyDashboardThemes('grey_dark')))
periscope:::fw_create_body())