-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.R
23 lines (23 loc) · 1.12 KB
/
sidebar.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sidebar <- bs4DashSidebar(brandColor="white",
title="Patient Profiles",
src="favicon.png",
skin="light",
bs4SidebarMenu(
bs4SidebarMenuItem("About",
tabName="about",
icon="info"
),
bs4SidebarMenuItem("Overview",
tabName="header",
icon="user"
),
bs4SidebarMenuItem("Dosing",
tabName="dosing",
icon="syringe"
),
bs4SidebarMenuItem("Adverse Events",
tabName="adverse",
icon="file-medical"
)
)
)