mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
28 lines
636 B
JavaScript
28 lines
636 B
JavaScript
import { window, File } from 'global';
|
|
import React, { Fragment } from 'react';
|
|
import {
|
|
action,
|
|
actions,
|
|
configureActions,
|
|
decorate,
|
|
decorateAction,
|
|
} from '@storybook/addon-actions';
|
|
import { Form } from '@storybook/components';
|
|
|
|
const { Button } = Form;
|
|
|
|
const pickNative = decorate([args => [args[0].nativeEvent]]);
|
|
const pickNativeAction = decorateAction([args => [args[0].nativeEvent]]);
|
|
|
|
export default {
|
|
title: 'Addons|Actions.deprecated',
|
|
};
|
|
|
|
export const decoratedAction = () => (
|
|
<Button onClick={pickNativeAction('decorated')}>Native Event</Button>
|
|
);
|
|
|
|
decoratedAction.story = {
|
|
name: 'Decorated Action',
|
|
};
|