1
1
/**
2
- * React Starter Kit (https://www.reactstarterkit. com/)
2
+ * Flatlogic Dashboards (https://flatlogic. com/admin-dashboards )
3
3
*
4
- * Copyright © 2014 -present Kriasoft , LLC. All rights reserved.
4
+ * Copyright © 2015 -present Flatlogic , LLC. All rights reserved.
5
5
*
6
6
* This source code is licensed under the MIT license found in the
7
7
* LICENSE.txt file in the root directory of this source tree.
@@ -19,6 +19,7 @@ import loadPrivacy from 'bundle-loader?lazy!../../pages/privacy';
19
19
import loadProfile from 'bundle-loader?lazy!../../pages/profile' ;
20
20
import loadTypography from 'bundle-loader?lazy!../../pages/typography' ;
21
21
import loadTables from 'bundle-loader?lazy!../../pages/tables' ;
22
+ import loadButtons from 'bundle-loader?lazy!../../pages/buttons' ;
22
23
import loadNotifications from 'bundle-loader?lazy!../../pages/notifications' ;
23
24
import loadCharts from 'bundle-loader?lazy!../../pages/charts' ;
24
25
import loadIcons from 'bundle-loader?lazy!../../pages/icons' ;
@@ -40,6 +41,7 @@ const PrivacyBundle = Bundle.generateBundle(loadPrivacy);
40
41
const ProfileBundle = Bundle . generateBundle ( loadProfile ) ;
41
42
const TypographyBundle = Bundle . generateBundle ( loadTypography ) ;
42
43
const TablesBundle = Bundle . generateBundle ( loadTables ) ;
44
+ const ButtonsBundle = Bundle . generateBundle ( loadButtons ) ;
43
45
const NotificationsBundle = Bundle . generateBundle ( loadNotifications ) ;
44
46
const ChartsBundle = Bundle . generateBundle ( loadCharts ) ;
45
47
const IconsBundle = Bundle . generateBundle ( loadIcons ) ;
@@ -78,6 +80,7 @@ class Layout extends React.Component {
78
80
< Route path = "/app/typography" exact component = { TypographyBundle } />
79
81
< Route path = "/app/tables" exact component = { TablesBundle } />
80
82
< Route path = "/app/notifications" exact component = { NotificationsBundle } />
83
+ < Route path = "/app/components/buttons" exact component = { ButtonsBundle } />
81
84
< Route path = "/app/components/charts" exact component = { ChartsBundle } />
82
85
< Route path = "/app/components/icons" exact component = { IconsBundle } />
83
86
< Route path = "/app/components/maps" exact component = { MapsBundle } />
0 commit comments