Created
April 9, 2017 15:59
-
-
Save VincentLoy/213c01498bf341544a0066b98dcc827f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let navigation = navigation: [ | |
{ | |
text: 'Browse categories', | |
payload: {text: 'pouet'}, | |
}, | |
{ | |
text: 'Surprise me !', | |
payload: {text: 'pouet'}, | |
}, | |
{ | |
text: 'Help / FAQ', | |
payload: {text: 'pouet'}, | |
navigation: [ | |
{ | |
text: 'Browse categories', | |
payload: {text: 'pouet'}, | |
}, | |
{ | |
text: 'Surprise me !', | |
payload: {text: 'pouet'}, | |
}, | |
], | |
}, | |
]; | |
let returnedNav = { | |
'main-nav' : { | |
parent: null, | |
items: [ | |
{ | |
text: 'Browse categories', | |
payload: {text: 'pouet'}, | |
}, | |
{ | |
text: 'Surprise me !', | |
payload: {text: 'pouet'}, | |
}, | |
{ | |
text: 'Help / FAQ', | |
payload: {text: 'pouet'}, | |
navigation: 'help-faq', | |
}, | |
], | |
}, | |
'help-faq': { | |
parent: 'main-nav', | |
items: [ | |
{ | |
text: 'Browse categories', | |
payload: {text: 'pouet'}, | |
}, | |
{ | |
text: 'Surprise me !', | |
payload: {text: 'pouet'}, | |
}, | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment