Created
October 6, 2019 03:26
-
-
Save simbathesailor/9344dfb3e5b0096ee6f37f21e36401bf to your computer and use it in GitHub Desktop.
Props and State(jobs with description array)
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 jobs = [ | |
{ | |
title: "Product Manager", | |
description: | |
"Suspendisse volutpat in quam cras vestibulum eleifend condimentum." | |
}, | |
{ | |
title: "React Engineer", | |
description: | |
"Suspendisse volutpat in quam cras vestibulum eleifend condimentum." | |
}, | |
{ | |
title: "NodeJS Engineer", | |
description: | |
"Suspendisse volutpat in quam cras vestibulum eleifend condimentum." | |
}, | |
{ | |
title: "Python Engineer", | |
description: | |
"Suspendisse volutpat in quam cras vestibulum eleifend condimentum." | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment