Wire up follower empty state. Closes #1913

This commit is contained in:
Gabe Kangas
2022-11-17 21:30:57 -08:00
parent fa30dea523
commit 18d92dbe9d
3 changed files with 26 additions and 6 deletions

View File

@@ -11,7 +11,13 @@ export default {
const Template: ComponentStory<typeof FollowerCollection> = (args: object) => (
<RecoilRoot>
<FollowerCollection name="Example stream name" {...args} />
<FollowerCollection
onFollowButtonClick={function (): void {
throw new Error('Function not implemented.');
}}
name="Example stream name"
{...args}
/>
</RecoilRoot>
);