mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:21:07 +08:00
31 lines
842 B
Plaintext
31 lines
842 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { useState } from 'react';
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Button } from './Button';
|
|
|
|
<Meta title="Button" component={Button} />
|
|
|
|
<!-- Example Button story with React Hooks. See note below related to this example. -->
|
|
|
|
export const ButtonWithHooks = () => {
|
|
// Sets the hooks for both the label and primary props
|
|
const [value, setValue] = useState("Secondary");
|
|
const [isPrimary, setIsPrimary] = useState(false);
|
|
// Sets a click handler to change the label's value
|
|
const handleOnChange = () => {
|
|
if (!isPrimary) {
|
|
setIsPrimary(true);
|
|
setValue("Primary");
|
|
}
|
|
};
|
|
return <Button primary={isPrimary} onClick={handleOnChange} label={value} />;
|
|
};
|
|
|
|
<Canvas>
|
|
<Story name="Primary" render={() => <ButtonWithHooks />} />
|
|
</Canvas>
|
|
``` |