mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:41:07 +08:00
19 lines
595 B
Plaintext
19 lines
595 B
Plaintext
```ts
|
|
// Button.stories.js|jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Button',
|
|
component: Button,
|
|
};
|
|
export const Primary = () => <Button backgroundColor="#ff0" label="Button" />;
|
|
export const Secondary = () => <Button backgroundColor="#ff0" label="😄👍😍💯" />;
|
|
export const Tertiary = () => <Button backgroundColor="#ff0" label="📚📕📈🤓" />;
|
|
``` |