1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/client/src/data/menu.js

29 lines
425 B
JavaScript

import { showChannels } from '../config'
const menu = [
{
title: 'Publish',
link: '/publish'
},
{
title: 'History',
link: '/history'
},
{
title: 'Faucet',
link: '/faucet'
},
{
title: 'About',
link: '/about'
}
]
showChannels &&
menu.unshift({
title: 'Channels',
link: '/channels'
})
export default menu