So happy you’re interested in working at Weld!
- The task is to build a User Admin app using React Hooks.
- Implement a GUI similar to this prototype: www.weld.io/namechanger
- Perform REST requests against the API
https://jsonplaceholder.typicode.com/users
(see API below). - Try to impress us!
- Use React Hooks and possibly custom hooks.
- Preferably use a global state container (e.g. Redux).
- UX: make the app easy to use.
- Code style: write and organize your code in a way so someone could continue working on it later.
Do requests to https://jsonplaceholder.typicode.com/users
Supported:
GET /users
GET /users/1
POST /users
PUT /users/1
PATCH /users/1
DELETE /users/1
More info: https://jsonplaceholder.typicode.com/