Skip to content

Commit

Permalink
Add empty onSendFeedback function
Browse files Browse the repository at this point in the history
  • Loading branch information
zhmurov authored and 3y3 committed Dec 16, 2024
1 parent d5e3578 commit 0a1f6d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion demo/src/Components/Feedback/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ const FeedbackDemo = (args: Args) => {
const isLiked = args['isLiked'];
const isDisliked = args['isDisliked'];

return <Component isLiked={isLiked} isDisliked={isDisliked} />;
const onSendFeedback = () => {};

return <Component isLiked={isLiked} isDisliked={isDisliked} onSendFeedback={onSendFeedback} />;
};

export default {
Expand Down

0 comments on commit 0a1f6d9

Please sign in to comment.