18 lines
517 B
TypeScript
18 lines
517 B
TypeScript
|
import * as React from 'react';
|
||
|
import { StoryRow } from './StoryRow';
|
||
|
import { MessageBubble } from './MessageBubble';
|
||
|
|
||
|
import { storiesOf } from '@storybook/react';
|
||
|
import { number, text } from '@storybook/addon-knobs';
|
||
|
|
||
|
storiesOf('Sticker Creator/elements', module).add('MessageBubble', () => {
|
||
|
const child = text('text', 'Foo bar banana baz');
|
||
|
const minutesAgo = number('minutesAgo', 3);
|
||
|
|
||
|
return (
|
||
|
<StoryRow>
|
||
|
<MessageBubble minutesAgo={minutesAgo}>{child}</MessageBubble>
|
||
|
</StoryRow>
|
||
|
);
|
||
|
});
|