Scrollbar styles for participant list

This commit is contained in:
Josh Perez 2020-11-20 12:19:53 -05:00 committed by Josh Perez
parent 6d53cb1740
commit 7ca063a274
2 changed files with 34 additions and 4 deletions

View file

@ -82,3 +82,12 @@ story.add('Many Participants', () => {
});
return <CallingParticipantsList {...props} />;
});
story.add('Overflow', () => {
const props = createProps({
participants: Array(50)
.fill(null)
.map(() => createParticipant({ title: 'Kirby' })),
});
return <CallingParticipantsList {...props} />;
});