Skip to content

Commit 21695f2

Browse files
chore: update storybook
1 parent d81e8c5 commit 21695f2

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

apps/meteor/client/views/room/contextualBar/RoomMembers/RoomMembers.stories.tsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,27 @@ WithABACRoom.args = {
7171
reload: action('reload'),
7272
isABACRoom: true,
7373
};
74+
75+
export const WithInvitedMember = Template.bind({});
76+
WithInvitedMember.args = {
77+
loading: false,
78+
members: [
79+
{
80+
_id: 'rocket.cat',
81+
username: 'rocket.cat',
82+
status: 'INVITED',
83+
name: 'Rocket.Cat',
84+
},
85+
],
86+
text: 'filter',
87+
type: 'online',
88+
setText: action('Lorem Ipsum'),
89+
setType: action('online'),
90+
total: 123,
91+
loadMoreItems: action('loadMoreItems'),
92+
rid: '!roomId',
93+
isTeam: false,
94+
isDirect: false,
95+
reload: action('reload'),
96+
isABACRoom: true,
97+
};

0 commit comments

Comments
 (0)