mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-25 10:58:19 +01:00
10 lines
293 B
TypeScript
10 lines
293 B
TypeScript
import * as React from 'react';
|
|
import { storiesOf } from '@storybook/react';
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import { DropZone } from './DropZone';
|
|
|
|
storiesOf('Sticker Creator/elements', module).add('DropZone', () => {
|
|
return <DropZone onDrop={action('onDrop')} />;
|
|
});
|