mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:31:08 +08:00
38 lines
880 B
JavaScript
38 lines
880 B
JavaScript
import React, { useState } from 'react';
|
|
import { action } from '@storybook/addon-actions';
|
|
import { Button } from '@storybook/react/demo';
|
|
|
|
export default {
|
|
title: 'Other|Demo/Button',
|
|
parameters: {
|
|
component: Button,
|
|
},
|
|
};
|
|
|
|
export const withText = () => <Button onClick={action('clicked')}>Hello Button</Button>;
|
|
withText.story = {
|
|
name: 'with text',
|
|
};
|
|
|
|
export const withSomeEmoji = () => (
|
|
<Button onClick={action('clicked')}>
|
|
<span role="img" aria-label="so cool">
|
|
😀 😎 👍 💯
|
|
</span>
|
|
</Button>
|
|
);
|
|
withSomeEmoji.story = {
|
|
name: 'with some emoji',
|
|
};
|
|
|
|
export const withCounter = () =>
|
|
React.createElement(() => {
|
|
const [counter, setCounter] = useState(0);
|
|
const label = `Testing: ${counter}`;
|
|
return <Button onClick={() => setCounter(counter + 1)}>{label}</Button>;
|
|
});
|
|
|
|
withCounter.story = {
|
|
name: 'with coumter',
|
|
};
|