add main menu navigation and door lock charges page

This commit is contained in:
Bilal Catic
2019-05-27 14:39:22 +02:00
parent c67b203bec
commit ed457e470f
9 changed files with 145 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
import DoorLockCharges from "../scenes/DoorLockCharges";
import Home from "../scenes/Home";
export const mainMenuItems = [
{
title: 'Home',
url: '/',
component: Home,
},
{
title: 'Door Lock Charges',
url: '/door-lock-charges',
component: DoorLockCharges,
},
];