Skip to content

Instantly share code, notes, and snippets.

@imhashir
Created April 26, 2020 12:31
Show Gist options
  • Save imhashir/49cb7b9235c85796744a9228d245a462 to your computer and use it in GitHub Desktop.
Save imhashir/49cb7b9235c85796744a9228d245a462 to your computer and use it in GitHub Desktop.
Implementing Custom User/Permissions/Roles System with React, Serverless Lambda & MySQL
export default {
items: [
{
name: 'Dashboard',
url: '/dashboard',
icon: 'icon-speedometer',
},
{
name: 'Departments',
url: '/departments',
icon: 'icon-people',
},
{
name: 'News',
url: '/news',
icon: 'icon-people',
},
{
name: 'Live',
url: '/live',
icon: 'icon-people',
},
{
name: 'Guests',
url: '/guests',
icon: 'icon-people',
},
{
name: 'Articles',
url: '/articles',
icon: 'icon-people',
},
{
name: 'Menus',
url: '/menus',
icon: 'icon-people',
},
],
};
export default {
items: [
],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment