diff --git a/6-React/class-02-components/src/pages/App.tsx b/6-React/class-02-components/src/pages/App.tsx index 4e27be24..56f6cf8c 100644 --- a/6-React/class-02-components/src/pages/App.tsx +++ b/6-React/class-02-components/src/pages/App.tsx @@ -1,10 +1,18 @@ import { CardProfile } from "../components/CardProfile"; +const users = [ + { id: 1, gitHub: "EmanuelQuintino", name: "Emanuel Quintino", age: 30 }, + { id: 2, gitHub: "EmanuelQuintino", name: "Emanuel Quintino", age: 30 }, + { id: 3, gitHub: "EmanuelQuintino", name: "Emanuel Quintino", age: 30 }, +]; + export function App() { return ( <>