signal-desktop/sticker-creator/components/StickerPackPreview.stories.tsx

26 lines
820 B
TypeScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2019-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2019-12-17 20:25:57 +00:00
import * as React from 'react';
import { storiesOf } from '@storybook/react';
import { text } from '@storybook/addon-knobs';
import { StoryRow } from '../elements/StoryRow';
import { StickerPackPreview } from './StickerPackPreview';
2019-12-17 20:25:57 +00:00
storiesOf('Sticker Creator/components', module).add(
'StickerPackPreview',
() => {
const image = text('image url', '/fixtures/512x515-thumbs-up-lincoln.webp');
const title = text('title', 'Sticker pack title');
const author = text('author', 'Sticker pack author');
const images = React.useMemo(() => Array(39).fill(image), [image]);
return (
<StoryRow top>
2019-12-17 20:25:57 +00:00
<StickerPackPreview images={images} title={title} author={author} />
</StoryRow>
);
}
);