@@ -58,6 +58,12 @@ import DraggableGrid from '../../pages/draggablegrid'
58
58
import MapsGoogle from '../../pages/maps'
59
59
import VectorMaps from '../../pages/maps/VectorMap'
60
60
61
+ import Timeline from '../../pages/timeline'
62
+ import Search from '../../pages/search'
63
+ import Gallery from '../../pages/gallery'
64
+ import Invoice from '../../pages/invoice'
65
+ import Calendar from '../../pages/calendar'
66
+
61
67
import BreadCrumbs from '../../components/BreadCrumbs' ;
62
68
63
69
// context
@@ -102,14 +108,17 @@ function Layout(props) {
102
108
< Route path = '/app/dashboard' component = { Dashboard } />
103
109
< Route path = "/app/profile" component = { Profile } />
104
110
< Route path = '/app/user/edit' component = { EditUser } />
105
- { /*TypographyPage*/ }
111
+
112
+ < Route exact path = "/app/core" render = { ( ) => < Redirect to = "/app/core/typography" /> } />
106
113
< Route path = "/app/core/typography" component = { TypographyPage } />
107
114
< Route path = "/app/core/colors" component = { ColorsPage } />
108
115
< Route path = "/app/core/grid" component = { GridPage } />
109
116
117
+ < Route exact path = "/app/tables" render = { ( ) => < Redirect to = { '/app/tables/static' } /> } />
110
118
< Route path = "/app/tables/static" component = { StaticTablesPage } />
111
119
< Route path = "/app/tables/dynamic" component = { DynamicTablesPage } />
112
120
121
+ < Route exact path = "/app/ui" render = { ( ) => < Redirect to = "/app/ui/icons" /> } />
113
122
< Route path = "/app/ui/icons" component = { IconsPage } />
114
123
< Route path = "/app/ui/badge" component = { BadgesPage } />
115
124
< Route path = "/app/ui/carousel" component = { CarouselsPage } />
@@ -122,9 +131,11 @@ function Layout(props) {
122
131
< Route path = "/app/ui/progress" component = { ProgressPage } />
123
132
{ /*<Route path="/app/ui/notifications" component={NotificationsPage} />*/ }
124
133
134
+ < Route exact path = "/app/forms" render = { ( ) => < Redirect to = "/app/forms/elements" /> } />
125
135
< Route path = "/app/forms/elements" component = { FormsElements } />
126
136
< Route path = "/app/forms/validation" component = { FormValidation } />
127
137
138
+ < Route exact path = "/app/charts" render = { ( ) => < Redirect to = { '/app/charts/overview' } /> } />
128
139
< Route path = "/app/charts/overview" component = { Charts } />
129
140
< Route path = "/app/charts/line" component = { LineCharts } />
130
141
< Route path = "/app/charts/bar" component = { BarCharts } />
@@ -136,6 +147,13 @@ function Layout(props) {
136
147
< Route path = "/app/maps/google" component = { MapsGoogle } />
137
148
< Route path = "/app/maps/vector" component = { VectorMaps } />
138
149
150
+ < Route exact path = "/app/extra" render = { ( ) => < Redirect to = "/app/extra/timeline" /> } />
151
+ < Route path = "/app/extra/timeline" component = { Timeline } />
152
+ < Route path = "/app/extra/search" component = { Search } />
153
+ < Route path = "/app/extra/gallery" component = { Gallery } />
154
+ < Route path = "/app/extra/invoice" component = { Invoice } />
155
+ < Route path = "/app/extra/calendar" component = { Calendar } />
156
+
139
157
/>
140
158
141
159
< Route path = { '/app/api-docs' } exact
@@ -150,11 +168,7 @@ function Layout(props) {
150
168
/>
151
169
) }
152
170
/>
153
- < Route
154
- exact
155
- path = "/app/ui"
156
- render = { ( ) => < Redirect to = "/app/ui/icons" /> }
157
- />
171
+
158
172
< Route path = { '/app/users' } exact component = { UsersTablePage } />
159
173
< Route path = { '/app/user/new' } exact component = { AddUser } />
160
174
< Route
0 commit comments