- Clone this repository to your machine
- Install the dependencies
npm install
- Start the application
npm start
Build a basic single-page application from the provided design to help look for Pokémon with the following features:
- Shows a list of all Pokémon
- Allows a user to filter the list of Pokémon by their type(s)
- Pokémon stats greater than or equal to 90 are shown in red
- A slightly modified Create React App template project using the TypeScript template, some basic CSS, and the Pokémon logo image.
You are free to use any other boilerplate or React framework that uses TypeScript if you'd prefer. - A
.json
file in./src/data/
containing all the Pokémon data from the first generation.
An import is already provided in./src/App.tsx
to use this data too! - Ready-to-use TypeScript interfaces in
./src/types.ts
for the provided.json
data. - Figma design files as guidance for the look-and-feel of the application (see below).
- 2–4 hours over ~5 days
- Use React and TypeScript
- Feel free to use any additional tools/libraries you feel comfortable with
- Style the app using any method you prefer. Eg: CSS Modules, Sass, Emotion, etc.
We do not expect you to spend more than 2–4 hours on the challenge, and we understand that it's unrealistic to implement a complete and polished solution in this time frame.
If you feel there was more you could do to improve it by the end of this time, please add some notes about what you'd change. We'll discuss these with you in person (or video call).
Once you've finished you can send us the URL to your repository via email. If your repository is private let us know and we'll send you the GitHub accounts that will need access to review the submission.
This project was bootstrapped with Create React App.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Note: this is a one-way operation. Once you eject
, you can’t go back!
If you aren’t satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
You don’t have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.