Add follow+notify to actions menu and refactor how those modals are displayed. Closes #2247

This commit is contained in:
Gabe Kangas
2022-10-23 21:59:25 -07:00
parent dd5d24d3d2
commit 77369a3cbe
4 changed files with 112 additions and 45 deletions

View File

@@ -41,3 +41,22 @@ export const Example = Template.bind({});
Example.args = {
actions,
};
export const ShowFollowExample = Template.bind({});
ShowFollowExample.args = {
actions,
showFollowItem: true,
};
export const ShowNotifyExample = Template.bind({});
ShowNotifyExample.args = {
actions,
showNotifyItem: true,
};
export const ShowNotifyAndFollowExample = Template.bind({});
ShowNotifyAndFollowExample.args = {
actions,
showNotifyItem: true,
showFollowItem: true,
};