Introduces bottom menu redesign (Menu component)

This commit is contained in:
mashazyu
2020-03-24 16:02:38 +01:00
committed by Sofiya Tepikin
parent b9d85042ef
commit cec8dbaf38
7 changed files with 100 additions and 62 deletions
+3 -5
View File
@@ -19,26 +19,25 @@ export const pages = [
{
component: 'Home',
icon: 'home',
isInMenu: true,
label: 'Home',
},
{
component: 'Calendar',
icon: 'calendar-range',
icon: 'calendar',
isInMenu: true,
label: 'Calendar',
parent: 'Home',
},
{
component: 'Chart',
icon: 'chart-line',
icon: 'chart',
isInMenu: true,
label: 'Chart',
parent: 'Home',
},
{
component: 'Stats',
icon: 'chart-pie',
icon: 'statistics',
isInMenu: true,
label: 'Stats',
parent: 'Home',
@@ -47,7 +46,6 @@ export const pages = [
children: Object.keys(settingsViews),
component: 'SettingsMenu',
icon: 'settings',
isInMenu: true,
label: 'Settings',
parent: 'Home',
},