-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
62 lines (58 loc) · 1.15 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
function(request) {
navbarPage(
strong(paste0("MC-ChemDB ",version)),
theme = bslib::bs_theme(
version = 5,
bootswatch = c("united","sketchy")[1]
),
navbarMenu(
title = "PhotoProcs",
tabPanel(
title = "Files",
source_ui("photoLoadUI.R")
),
tabPanel(
title = "Edit",
source_ui("photoEditUI.R")
),
tabPanel(
title = "Sample",
source_ui("photoSampleUI.R")
)
),
navbarMenu(
"Neutrals",
tabPanel(
title = "Files",
source_ui("neutralsLoadUI.R")
),
tabPanel(
title = "Edit",
source_ui("neutralsEditUI.R")
),
tabPanel(
title = "Sample",
source_ui("neutralsSampleUI.R")
)
),
navbarMenu(
"Ions",
tabPanel(
title = "Files",
source_ui("ionsLoadUI.R")
),
tabPanel(
title = "Edit",
source_ui("ionsEditUI.R")
),
tabPanel(
title = "Sample",
source_ui("ionsSampleUI.R")
)
),
tabPanel(
title = "About",
source_ui("aboutUI.R")
)
)
}