Created
March 31, 2023 17:10
-
-
Save shameemreza/161a821e760dff9a578c515f824d5436 to your computer and use it in GitHub Desktop.
Code for the "How to Render an Array of Objects in React?" Article.
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
import React from "react"; | |
import EmployeeList from "./EmployeeList"; | |
function App() { | |
const employees = [ | |
{ name: "John Doe", age: 25, position: "Software Engineer" }, | |
{ name: "Jane Smith", age: 32, position: "Product Manager" }, | |
{ name: "Mike Johnson", age: 27, position: "UI/UX Designer" }, | |
{ name: "Sarah Lee", age: 30, position: "Marketing Manager" }, | |
]; | |
return ( | |
<div> | |
<h1>Employee List</h1> | |
<EmployeeList employees={employees} /> | |
</div> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment