Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. const jobsTitleList = [
  2. "Product Manager",
  3. "React Engineer",
  4. "NodeJS Engineer",
  5. "Python Engineer"
  6. ];
  7.  
  8. function App() {
  9. return (
  10. <div className="App">
  11. {jobsTitleList.map((jobTitle, index) => {
  12. return <h3 key={index}>{jobTitle}</h3>;
  13. })}
  14. </div>
  15. );
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement