mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
19 lines
393 B
Plaintext
19 lines
393 B
Plaintext
```js
|
|
// /my-addon/manager.js
|
|
|
|
import React from 'react';
|
|
|
|
import { useGlobals } from '@storybook/api';
|
|
|
|
export const Panel = () => {
|
|
const [globals, updateGlobals] = useGlobals();
|
|
|
|
const isActive = globals['my-param-key'] || false;
|
|
|
|
return (
|
|
<button onClick={() => updateGlobals({ ['my-param-key']: !isActive })}>
|
|
{isActive ? 'Hide me!' : 'Show me!'}
|
|
</button>
|
|
);
|
|
};
|
|
``` |