import { action } from '@storybook/addon-actions'; import { storiesOf } from '@storybook/react'; import * as React from 'react'; import { useDropArea } from '../src'; import ShowDocs from './util/ShowDocs'; const Demo = () => { const [bond, state] = useDropArea({ onFiles: action('onFiles'), onUri: action('onUri'), onText: action('onText'), }); const style: React.CSSProperties = { width: 300, height: 200, margin: '50px auto', border: '1px solid #000', textAlign: 'center', lineHeight: '200px', ...(state.over ? { border: '1px solid green', outline: '3px solid yellow', background: '#f8f8f8', } : {}), }; return (
Actions tab.
Cmd + V paste text here.
{JSON.stringify(state, null, 4)}