-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSidebarData.js
More file actions
43 lines (42 loc) · 1 KB
/
SidebarData.js
File metadata and controls
43 lines (42 loc) · 1 KB
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
import React from 'react';
import HomeIcon from '@material-ui/icons/Home';
import HistoryIcon from '@material-ui/icons/History';
import BuildIcon from '@material-ui/icons/Build';
import FavoriteIcon from '@material-ui/icons/Favorite';
import MailIcon from '@material-ui/icons/Mail';
import Home from "./Home"
import ChooseTotalTime from './ChooseTotalTime';
import Overview from './Overview';
import LikedTrains from './LikedTrains';
import ContactUs from './ContactUs';
export const SidebarData = [{
title: "Home",
icon: <HomeIcon />,
link: "/home",
component: Home
},
{
title: "Overview",
icon: <HistoryIcon />,
link: "/overview",
component: Overview
},
{
title: "Create Your Train",
icon: <BuildIcon />,
link: "/ChooseTotalTime",
component: ChooseTotalTime
},
{
title: "Liked Trains",
icon: <FavoriteIcon />,
link: "/likedTrains",
component: LikedTrains
},
{
title: "Contact Us",
icon: <MailIcon />,
link: "/contactUs",
component: ContactUs
}
]