This session has two parts. Your interviewer will walk you through each one.
npm install
npm run devThis also works in StackBlitz — just import the repo.
Open src/challenge-1/UserDirectory.tsx.
A UserCard component and a fetchUsers API function are already provided. Your job is to build out the UserDirectory component so it fetches the list of users and renders them using UserCard.
Open src/challenge-2/OrderDashboard.tsx.
This component works — filters filter, sorts sort, pagination paginates. But it's grown organically and could use some cleanup. Refactor it however you think is best.
One constraint: preserve behavior. Everything that works today should still work after your refactor.
Think out loud — we're interested in how you prioritize and what you notice.