fix(linting): Adding standard JS linting rules

This commit is contained in:
Chris Troutner
2020-07-06 15:13:35 -07:00
parent 38bbd24c87
commit 22a9f29274
5 changed files with 636 additions and 401 deletions
@@ -6,17 +6,17 @@
It over-rides he default file in the gatsby-ipfs-web-wallet Theme.
*/
import React from "react"
import { Sidebar } from "adminlte-2-react"
import React from 'react'
import { Sidebar } from 'adminlte-2-react'
const { Item } = Sidebar
const MenuComponents = [
{
key: "New Component",
key: 'New Component',
component: <div>Test!</div>,
menuItem: <Item icon="fas-cog" key="New Component" text="New Component" />,
},
menuItem: <Item icon='fas-cog' key='New Component' text='New Component' />
}
]
export default MenuComponents