mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
13 lines
236 B
Plaintext
13 lines
236 B
Plaintext
```js
|
|
// /my-addon/manager.js
|
|
|
|
import React from 'react';
|
|
|
|
import { useStorybookApi } from '@storybook/api';
|
|
|
|
export const Panel = () => {
|
|
const state = useStorybookApi();
|
|
|
|
return <div>do something with storybook's api</div>;
|
|
};
|
|
``` |