signal-desktop/ts/components/AnimatedEmojiGalore.stories.tsx
2022-05-04 10:43:22 -07:00

20 lines
595 B
TypeScript

// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import type { PropsType } from './AnimatedEmojiGalore';
import { AnimatedEmojiGalore } from './AnimatedEmojiGalore';
const story = storiesOf('Components/AnimatedEmojiGalore', module);
function getDefaultProps(): PropsType {
return {
emoji: '❤️',
onAnimationEnd: action('onAnimationEnd'),
};
}
story.add('Hearts', () => <AnimatedEmojiGalore {...getDefaultProps()} />);