-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.js
41 lines (37 loc) · 835 Bytes
/
routes.js
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
//routes,paths for every click
import Dashboard from "views/Dashboard.jsx";
import TableList from "views/TableList.jsx";
import Icons from "views/Icons.jsx";
import Notifications from "views/Notifications.jsx";
import Upgrade from "views/Upgrade.jsx";
const dashboardRoutes = [
{
path: "/icons",
name: "Main View",
icon: "pe-7s-graph",
component: Icons,
layout: "/admin"
},
{
path: "/dashboard",
name: "Over View",
icon: "pe-7s-menu",
component: Dashboard,
layout: "/admin"
},
{
path: "/notifications",
name: "Notifications",
icon: "pe-7s-bell",
component: Notifications,
layout: "/admin"
},
{
path: "/table",
name: "More details",
icon: "pe-7s-note2",
component: TableList,
layout: "/admin"
},
];
export default dashboardRoutes;