Sobes.tech

Implement a component to display a list of teams with members. Given an array of teams (with name and list of user IDs) and a separate array of users (with ID and name), match teams with users by user ID and display team cards with member listings. If no members, show 'no members'; if user ID exists but user not found, show a dash. User ID may come as an array, number, null, or undefined.

133