Skip to content

Instantly share code, notes, and snippets.

@shameemreza
Created March 31, 2023 17:10
Show Gist options
  • Save shameemreza/161a821e760dff9a578c515f824d5436 to your computer and use it in GitHub Desktop.
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.
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