Make password configurable / add UI for upload
This commit is contained in:
17
client/src/constants/menuItems.js
Normal file
17
client/src/constants/menuItems.js
Normal file
@@ -0,0 +1,17 @@
|
||||
import UploadDLockData from "../scenes/UploadDLockData";
|
||||
import Home from "../scenes/Home";
|
||||
|
||||
export const mainMenuItems = [
|
||||
{
|
||||
id: 'home',
|
||||
title: 'Home',
|
||||
url: '/',
|
||||
component: Home,
|
||||
},
|
||||
{
|
||||
id: 'uploadDLockData',
|
||||
title: 'DLock',
|
||||
url: '/dlock',
|
||||
component: UploadDLockData,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user