Created
March 11, 2019 23:21
-
-
Save bulini/d49cd3a05a1801642609206f61415a2e to your computer and use it in GitHub Desktop.
This file contains 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
export const flats = [ | |
{ | |
floor: 1, | |
options: [ | |
{ | |
van: 1, | |
cost: 10 | |
}, | |
{ | |
van: 2, | |
cost: 20 | |
} | |
] | |
}, | |
{ | |
floor: 2, | |
options: [ | |
{ | |
van: 1, | |
cost: 20 | |
}, | |
{ | |
van: 2, | |
cost: 40 | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment