1
1
// import
2
- import DashboardChakra from "views/Dashboard/Dashboard.js" ;
3
- import TablesChakra from "views/Dashboard/Tables.js" ;
4
- import BillingChakra from "views/Dashboard/Billing.js" ;
5
- import ProfileChakra from "views/Dashboard/Profile.js" ;
6
- import SignInChakra from "views/Pages/SignIn.js" ;
7
- import SignUpChakra from "views/Pages/SignUp.js" ;
2
+ import Dashboard from "views/Dashboard/Dashboard.js" ;
3
+ import Tables from "views/Dashboard/Tables.js" ;
4
+ import Billing from "views/Dashboard/Billing.js" ;
5
+ import Profile from "views/Dashboard/Profile.js" ;
6
+ import SignIn from "views/Pages/SignIn.js" ;
7
+ import SignUp from "views/Pages/SignUp.js" ;
8
8
9
9
import {
10
10
HomeIcon ,
@@ -21,23 +21,23 @@ var dashRoutes = [
21
21
name : "Dashboard" ,
22
22
rtlName : "لوحة القيادة" ,
23
23
icon : < HomeIcon color = "inherit" /> ,
24
- component : DashboardChakra ,
24
+ component : Dashboard ,
25
25
layout : "/admin" ,
26
26
} ,
27
27
{
28
28
path : "/tables" ,
29
29
name : "Tables" ,
30
30
rtlName : "لوحة القيادة" ,
31
31
icon : < StatsIcon color = "inherit" /> ,
32
- component : TablesChakra ,
32
+ component : Tables ,
33
33
layout : "/admin" ,
34
34
} ,
35
35
{
36
36
path : "/billing" ,
37
37
name : "Billing" ,
38
38
rtlName : "لوحة القيادة" ,
39
39
icon : < CreditIcon color = "inherit" /> ,
40
- component : BillingChakra ,
40
+ component : Billing ,
41
41
layout : "/admin" ,
42
42
} ,
43
43
{
@@ -52,15 +52,15 @@ var dashRoutes = [
52
52
rtlName : "لوحة القيادة" ,
53
53
icon : < PersonIcon color = "inherit" /> ,
54
54
secondaryNavbar : true ,
55
- component : ProfileChakra ,
55
+ component : Profile ,
56
56
layout : "/admin" ,
57
57
} ,
58
58
{
59
59
path : "/signin" ,
60
60
name : "Sign In" ,
61
61
rtlName : "لوحة القيادة" ,
62
62
icon : < DocumentIcon color = "inherit" /> ,
63
- component : SignInChakra ,
63
+ component : SignIn ,
64
64
layout : "/auth" ,
65
65
} ,
66
66
{
@@ -69,7 +69,7 @@ var dashRoutes = [
69
69
rtlName : "لوحة القيادة" ,
70
70
icon : < RocketIcon color = "inherit" /> ,
71
71
secondaryNavbar : true ,
72
- component : SignUpChakra ,
72
+ component : SignUp ,
73
73
layout : "/auth" ,
74
74
} ,
75
75
] ,
0 commit comments