Fire action in story when button is pressed

This commit is contained in:
Gabe Kangas 2022-11-18 17:10:14 -08:00
parent a75c838ef3
commit 67121426a5
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA

View File

@ -1,6 +1,7 @@
import React from 'react';
import { ComponentStory, ComponentMeta } from '@storybook/react';
import { RecoilRoot } from 'recoil';
import { action } from '@storybook/addon-actions';
import { FollowerCollection } from './FollowerCollection';
export default {
@ -12,8 +13,8 @@ export default {
const Template: ComponentStory<typeof FollowerCollection> = (args: object) => (
<RecoilRoot>
<FollowerCollection
onFollowButtonClick={function (): void {
throw new Error('Function not implemented.');
onFollowButtonClick={() => {
action('Follow button clicked');
}}
name="Example stream name"
{...args}