Last active
July 7, 2019 14:52
-
-
Save nicolasmendonca/1009e059e10a55818b817bf7f144135d to your computer and use it in GitHub Desktop.
07-2019-context
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
const response1 = [ | |
{ id: 1, productName: 'Chair' }, | |
{ id: 2, productName: 'Table' }, | |
]; | |
const requiredResponse1Output = [ | |
{ id: 1, product: { name: 'Chair' } }, | |
{ id: 2, product: { name: 'Table' } }, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment