Scrollbar styles for participant list
This commit is contained in:
parent
6d53cb1740
commit
7ca063a274
2 changed files with 34 additions and 4 deletions
|
@ -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} />;
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue