This commit is contained in:
Norbert de Langen 2019-06-19 14:28:09 +02:00
parent a170f18ba6
commit b4d2fb6ac4
2 changed files with 12 additions and 1 deletions

View File

@ -1,4 +1,4 @@
import React, { Fragment, useMemo } from 'react';
import React, { useMemo } from 'react';
import { useParameter } from '@storybook/api';
import { addons, types } from '@storybook/addons';

View File

@ -7,8 +7,19 @@ const run = async () => {
channel.on(EVENTS.REQUEST, () => {
// do something in the preview context
// then report back to the manager
channel.emit(EVENTS.RESULT, ['from the preview']);
});
};
run();
// import { useChannel } from '@storybook/client-api';
// export const myDecorator = () => {
// const emit = useChannel({
// [EVENTS.REQUEST]: () => {
// emit(EVENTS.RESULT, ['from the preview'])}
// });
// };