// Copyright 2019-2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { storiesOf } from '@storybook/react'; import { number, text } from '@storybook/addon-knobs'; import { StoryRow } from './StoryRow'; import { MessageSticker } from './MessageSticker'; storiesOf('Sticker Creator/elements', module).add('MessageSticker', () => { const image = text('image url', '/fixtures/512x515-thumbs-up-lincoln.webp'); const minutesAgo = number('minutesAgo', 3); return ( ); });