13 lines
No EOL
255 B
JavaScript
13 lines
No EOL
255 B
JavaScript
import React from 'react';
|
|
import NavMain from 'component/navMain'
|
|
|
|
export const NavWallet = () => {
|
|
return <NavMain links={{
|
|
'wallet': 'Overview',
|
|
'send': 'Send',
|
|
'receive': 'Receive',
|
|
'rewards': 'Rewards'
|
|
}} />
|
|
}
|
|
|
|
export default NavWallet |