mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:11:06 +08:00
28 lines
781 B
JavaScript
28 lines
781 B
JavaScript
import React from 'react';
|
|
import { storiesOf } from '@storybook/react';
|
|
import { action, decorateAction } from '../src';
|
|
|
|
const pickFirst = decorateAction([
|
|
args => args.slice(0, 1)
|
|
]);
|
|
|
|
storiesOf('Button', module)
|
|
.add('Hello World', () => (
|
|
<button onClick={action('hello-world')}>Hello World</button>
|
|
))
|
|
.add('Decorated Action', () => (
|
|
<button onClick={pickFirst('decorated')}>First Argument</button>
|
|
))
|
|
.add('Circular Payload', () => {
|
|
const circular = {foo: {}};
|
|
circular.foo.circular = circular;
|
|
return <button
|
|
onClick={() => action('circular')(circular)}>
|
|
Circular Payload
|
|
</button>;
|
|
})
|
|
.add('Function Name', () => {
|
|
const fn = action('fnName');
|
|
return <button onClick={fn}>Action.name: {fn.name}</button>
|
|
});
|