mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Attempt to fix typescript terror
This commit is contained in:
parent
8faa30bdfc
commit
aa8ef1be7f
@ -132,7 +132,7 @@ describe('jsxDecorator', () => {
|
||||
|
||||
it('allows the snippet output to be modified by onBeforeRender', () => {
|
||||
const storyFn = (args: any) => <div>args story</div>;
|
||||
const onBeforeRender = (dom) => `<p>${dom}</p>`;
|
||||
const onBeforeRender = (dom: string) => `<p>${dom}</p>`;
|
||||
const jsx = { onBeforeRender };
|
||||
const context = makeContext('args', { __isArgsStory: true, jsx }, {});
|
||||
jsxDecorator(storyFn, context);
|
||||
|
Loading…
x
Reference in New Issue
Block a user