Skip to content

Instantly share code, notes, and snippets.

@egorguscha
Last active August 23, 2019 04:54
Show Gist options
  • Save egorguscha/c8c086b6511585adab9276efbda0a16f to your computer and use it in GitHub Desktop.
Save egorguscha/c8c086b6511585adab9276efbda0a16f to your computer and use it in GitHub Desktop.
/*
types:
simple - 2 persons
complex - 2 > persons
*/
const main = {
messages: {
title: 'Messages',
dialogues: [
{
name: 'Mark',
text: 'hello, how are you?',
},
{
name: 'user',
text: "Hello, i'm fine and you?",
},
],
},
markets: {
title: 'Markets',
dialogues: [
{
name: 'John',
text: 'hello, how are you?',
},
{
name: 'user',
text: "Hello, i'm fine and you?",
},
{
name: 'Bob',
text: 'Hi, guys!',
},
],
},
contacts: {
title: 'Contacts',
members: [
{
name: 'John',
...
},
{
name: 'Mark',
...
},
{
name: 'Bob',
...
}
]
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment