Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 2.22 KB

README.md

File metadata and controls

29 lines (24 loc) · 2.22 KB

Assessment 4.5: React

  • Pokedex

Important Grading Information

  • Make sure you read the Assessment-4.5 Grading Rubric.
  • This assessment is worth 15% of your final grade. You need to get a 75% or better to pass. (You must pass all assessments in order to graduate Code Platoon's program.)
  • If you fail the assessment, you have can retake it once to improve your score. For this assessment...
    • 5% penalty: If you complete and submit the retake within one week of receiving your grade.
    • 10% penalty: If you complete and submit the retake afterwards.
  • If you fail the assessment, you have can retake it once to improve your score. For this assessment...
    • 5% penalty: If you complete and submit the retake within one week of receiving your grade.
    • 10% penalty: If you complete and submit the retake after one week of receiving your grade. A retake for this assessment WILL NOT be accepted after this date.
  • Once you finish this assessment, please email [email protected] and let him know that you wish for him to grade assessment 4.5

Rules / Process

  • This test is fully open notes and open Google, but is not to be completed with other students
  • Do not open a pull request against this repository. We will evaluate your code individually with you.

Requirements

  • This assessment must be completed using ReactJS on your front-end.

Challenge

We are going to build the Pokedex for the original 150 Pokemon using the Poke API using React. The requirements of this challenge are for you to:

  • Create an API layer that reaches out to Poke API to get all of the Pokemon and to get details about each Pokemon (a photo, and their Pokemon type)
  • /pokemon should make a call to the Poke API and list out all 150 Pokemon
  • /pokemon/ID should make a call to the Poke API and list out the details of that Pokemon (a photo, their type, their attacks, and whatever else you want to add)
  • /pokemon/search should display a form for the User to be able to look up a Pokemon by name and call out to the Poke API to get results returned

No points will be deducted if it's ugly but it'd be nice if it looked nice.