mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:11:13 +08:00
26 lines
667 B
Plaintext
26 lines
667 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.ts
|
|
|
|
import React, { useState } from 'react';
|
|
|
|
import { Button } from './Button';
|
|
|
|
/*
|
|
* Example Button story with React Hooks.
|
|
* See note below related to this example.
|
|
*/
|
|
export const Primary = () => {
|
|
// 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} />;
|
|
};
|
|
``` |