Skip to content

Instantly share code, notes, and snippets.

@VincentLoy
Created April 9, 2017 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VincentLoy/213c01498bf341544a0066b98dcc827f to your computer and use it in GitHub Desktop.
Save VincentLoy/213c01498bf341544a0066b98dcc827f to your computer and use it in GitHub Desktop.
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