storybook/docs/snippets/common/storybook-addon-panel-example.js.mdx
2021-05-06 21:05:56 +01:00

24 lines
573 B
Plaintext

```js
// addon-panel/register.js
import React from 'react';
import { AddonPanel } from '@storybook/components';
import { addons, types } from '@storybook/addons';
import { useGlobals } from '@storybook/api';
addons.register('my/panel', () => {
addons.add('my-panel-addon/panel', {
title: 'Example Storybook panel',
//👇 Sets the type of UI element in Storybook
type: types.PANEL,
render: ({ active, key }) => (
<AddonPanel key="panel" active={isActive}>
<h2>I'm a panel addon in Storybook</h2>
</AddonPanel>
),
});
});
```