This commit is contained in:
Chris Troutner
2020-10-19 14:54:05 -07:00
parent a41b867f64
commit e7b29fb8fc
@@ -31,42 +31,42 @@ const MenuComponents = props => {
return [ return [
{ {
key: 'Tokens', key: 'Tokens',
component: <Tokens key="Tokens" {...props} />, component: <Tokens key='Tokens' {...props} />,
menuItem: <Item icon="fas-coins" key="Tokens" text="Tokens" /> menuItem: <Item icon='fas-coins' key='Tokens' text='Tokens' />
}, },
{ {
key: 'Send/Receive BCH', key: 'Send/Receive BCH',
component: <SendReceive key="Send/Receive BCH" {...props} />, component: <SendReceive key='Send/Receive BCH' {...props} />,
menuItem: ( menuItem: (
<Item <Item
icon="fa-exchange-alt" icon='fa-exchange-alt'
key="Send/Receive BCH" key='Send/Receive BCH'
text="Send/Receive BCH" text='Send/Receive BCH'
/> />
) )
}, },
{ {
key: 'Wallet', key: 'Wallet',
component: <Wallet key="Wallet" {...props} />, component: <Wallet key='Wallet' {...props} />,
menuItem: <Item icon="fa-wallet" key="Wallet" text="Wallet" /> menuItem: <Item icon='fa-wallet' key='Wallet' text='Wallet' />
}, },
{ {
key: 'Configure', key: 'Configure',
component: <Configure key="Configure" {...props} />, component: <Configure key='Configure' {...props} />,
menuItem: <Item icon="fas-cog" key="Configure" text="Configure" /> menuItem: <Item icon='fas-cog' key='Configure' text='Configure' />
}, },
{ {
key: 'TX History', key: 'TX History',
component: <TXHistory key="TX History" {...props} />, component: <TXHistory key='TX History' {...props} />,
menuItem: ( menuItem: (
<Item icon="fas-cog" key="TX History" text="TX History" /> <Item icon='fas-cog' key='TX History' text='TX History' />
) )
}, },
{ {
key: 'Demo Component', key: 'Demo Component',
component: <DemoComponent key="Demo Component" {...props} />, component: <DemoComponent key='Demo Component' {...props} />,
menuItem: ( menuItem: (
<Item icon="fas-cog" key="Demo Component" text="Demo Component" /> <Item icon='fas-cog' key='Demo Component' text='Demo Component' />
) )
} }
] ]