Skip to content

Instantly share code, notes, and snippets.

@anuj9196
Created June 18, 2019 02:55
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 anuj9196/5e039c5514c51313bd02f9a414406477 to your computer and use it in GitHub Desktop.
Save anuj9196/5e039c5514c51313bd02f9a414406477 to your computer and use it in GitHub Desktop.
r.json
servicesDummy = [
{
id: 1,
serviceName: 'menicure',
subservices: [
{ id: 1, subserviceName: 'deluxe menicure', price: 45 },
{ id: 2, subserviceName: 'jelly menicure', price: 55 },
{ id: 3, subserviceName: 'classic menicure', price: 85 },
]
},
{
id: 2,
serviceName: 'pedicure',
subservices: [
{ id: 1, subserviceName: 'deluxe pediicure', price: 5 },
{ id: 2, subserviceName: 'jelly pedicure', price: 415 },
{ id: 3, subserviceName: 'classic pedicure', price: 85 },
]
},
{
id: 3,
serviceName: 'nail enchancement',
subserviceName: []
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment