Created
August 3, 2017 22:49
-
-
Save psaia/e9ff5ecd1eb7c2ffffb304641e8a1d44 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
| const dummyData = [ | |
| { | |
| name: 'Hot Pot', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/1/' | |
| ] | |
| }, | |
| { | |
| name: 'Hot Pot 2', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/1/', | |
| 'http://lorempixel.com/400/400/food/2/' | |
| ] | |
| }, | |
| { | |
| name: 'Hot Pot 3', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/1/', | |
| 'http://lorempixel.com/400/400/food/2/', | |
| 'http://lorempixel.com/400/400/food/3/' | |
| ] | |
| }, | |
| { | |
| name: 'Hot Pot 4', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/1/', | |
| 'http://lorempixel.com/400/400/food/2/', | |
| 'http://lorempixel.com/400/400/food/3/', | |
| 'http://lorempixel.com/400/400/food/4/' | |
| ] | |
| }, | |
| { | |
| name: 'Hot Pot5', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/5/', | |
| 'http://lorempixel.com/400/400/food/6/', | |
| 'http://lorempixel.com/400/400/food/7/', | |
| 'http://lorempixel.com/400/400/food/8/' | |
| ] | |
| }, | |
| { | |
| name: 'Hot Pot 6', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/9/', | |
| 'http://lorempixel.com/400/400/food/10', | |
| 'http://lorempixel.com/400/400/food/11/', | |
| 'http://lorempixel.com/400/400/food/12/' | |
| ] | |
| }, | |
| { | |
| name: 'Hot Pot A', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/1/' | |
| ] | |
| }, | |
| { | |
| name: 'Hot Pot 2 B', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/1/', | |
| 'http://lorempixel.com/400/400/food/2/' | |
| ] | |
| }, | |
| { | |
| name: 'Hot Pot 3 C', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/1/', | |
| 'http://lorempixel.com/400/400/food/2/', | |
| 'http://lorempixel.com/400/400/food/3/' | |
| ] | |
| }, | |
| { | |
| name: 'Hot Pot 4 D', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/1/', | |
| 'http://lorempixel.com/400/400/food/2/', | |
| 'http://lorempixel.com/400/400/food/3/', | |
| 'http://lorempixel.com/400/400/food/4/' | |
| ] | |
| }, | |
| { | |
| name: 'Hot Pot5 E', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/5/', | |
| 'http://lorempixel.com/400/400/food/6/', | |
| 'http://lorempixel.com/400/400/food/7/', | |
| 'http://lorempixel.com/400/400/food/8/' | |
| ] | |
| }, | |
| { | |
| name: 'Hot Pot 6 F', | |
| images: [ | |
| 'http://lorempixel.com/400/400/food/9/', | |
| 'http://lorempixel.com/400/400/food/10', | |
| 'http://lorempixel.com/400/400/food/11/', | |
| 'http://lorempixel.com/400/400/food/12/' | |
| ] | |
| } | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment