-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathui.R
More file actions
36 lines (33 loc) · 748 Bytes
/
ui.R
File metadata and controls
36 lines (33 loc) · 748 Bytes
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
## Load libraries
library(shinydashboard)
library(googlesheets4)
dashboardPage(
dashboardHeader(title = "PARSIQ NFT Punks"),
dashboardSidebar(
sidebarMenu(
id = "tabs",
menuItem("New Offers", tabName = "offs", icon = icon("cart-plus")),
menuItem("New Bids", tabName = "n_bids", icon = icon("user-plus")),
menuItem("Withdrawn Bids ", tabName = "w_bids", icon = icon("user-minus"))
)
),
dashboardBody(
tabItems(
tabItem(tabName = "offs",
column(width = 12,
dataTableOutput('offer_table')
)
),
tabItem(tabName = "n_bids",
column(width = 12,
dataTableOutput('bids_table')
)
),
tabItem(tabName = "w_bids",
column(width = 12,
dataTableOutput('wbids_table')
)
)
)
)
)