```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 ( ); }; ```