Update strings and design around custom stories

This commit is contained in:
Scott Nonnenberg 2022-10-25 16:57:16 -07:00 committed by GitHub
parent 0308f208d8
commit 08f2a966a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 203 additions and 99 deletions

View file

@ -80,6 +80,26 @@ Modal.args = {
distributionLists: getFakeDistributionListsWithMembers(),
};
export const BlockList = Template.bind({});
BlockList.args = {
distributionLists: [
{ ...getMyStories(), members: [getDefaultConversation()] },
],
groupStories: [],
};
export const AllowList = Template.bind({});
AllowList.args = {
distributionLists: [
{
...getMyStories(),
isBlockList: false,
members: [getDefaultConversation()],
},
],
groupStories: [],
};
export const FirstTime = Template.bind({});
FirstTime.args = {
distributionLists: [myStories],