mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
export const parameters: any = {
|
|
docs: {
|
|
renderer: async () => {
|
|
const { DocsRenderer } = (await import('./DocsRenderer')) as any;
|
|
return new DocsRenderer();
|
|
},
|
|
},
|
|
};
|