mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
16 lines
317 B
Plaintext
16 lines
317 B
Plaintext
```js
|
|
// .storybook/preview.js
|
|
|
|
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
import toReact from '@egoist/vue-to-react';
|
|
|
|
export const parameters = {
|
|
docs: {
|
|
prepareForInline: (storyFn, { args }) => {
|
|
const Story = toReact(storyFn());
|
|
return <Story {...args} />;
|
|
},
|
|
},
|
|
};
|
|
``` |