Can I create a list/table within a list?

Is it possible to create a list/table inside of a list component?

For example, I have a team (Team A, Team B, Team C,
etc.). I want to display all the members assigned to each team with additional member information.

For context, all the team information is in one table and all the member information is in another table (which has a column for assigned team_id) and I am matching them.

The way I was thinking of doing this was referencing the main list to grab the team_id to then filter my member list to only pull the members that have team_id’s that match.