Automatically include the JSON using this import statement:
import pokemon from'./react-pokedex.json';
console.log(pokemon);
console.log(pokemon.pokedex);
Base
Render 20 Pokemon onto the screen.
Pokemon Component
Create a component for a single Pokemon.
<Pokemonpokemon={pokemonData}/>
pokedex_entries Component
Create a component that contains the list of Pokedex entries. Pokedex entries are a property of each pokemon, not a list containing all the pokemon components.