mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
15 lines
287 B
Plaintext
15 lines
287 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
};
|
|
export const Text = () => <Button label="Hello" onClick={action('clicked')} />;
|
|
``` |