Adding more comments to the menu-components.js

This commit is contained in:
Chris Troutner
2020-07-06 15:09:28 -07:00
parent 87b88faf23
commit 38bbd24c87
2 changed files with 17002 additions and 30 deletions
@@ -0,0 +1,22 @@
/*
This file is how you add new menu items to your site. It uses the Gatsby
concept of Component Shadowing:
https://www.gatsbyjs.org/blog/2019-04-29-component-shadowing/
It over-rides he default file in the gatsby-ipfs-web-wallet Theme.
*/
import React from "react"
import { Sidebar } from "adminlte-2-react"
const { Item } = Sidebar
const MenuComponents = [
{
key: "New Component",
component: <div>Test!</div>,
menuItem: <Item icon="fas-cog" key="New Component" text="New Component" />,
},
]
export default MenuComponents