DarrenSem/pokemon-exercise-vite

create a <PokedexTable /> component that takes in pokemonArray and renders all the pokemon in that array

Closed this issue · 0 comments

https://t3-tools.notion.site/Pokedex-Problem-90f9dcfff10d4418a6fad44581b1ecff

Part 2

Provided a Pokemon javascript array structured as such:

const pokemonArray = [
{
  id: 1,
  name: "Bulbasaur",
  types: ["grass"],
  sprite: "https://pokemon.com/pictures/bulbasaur.png"
}, {
  id: 2,
  ...
}, ...]

...create a <PokedexTable /> component that takes in the array and renders all the pokemon in that array.