mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Merge pull request #11195 from storybookjs/fix/doNotRender
Addon-docs: Remove render preprocessing for react components w/o docgen
This commit is contained in:
commit
c3f48fd2eb
@ -29,13 +29,8 @@ function getPropDefs(component: Component, section: string): PropDef[] {
|
||||
let processedComponent = component;
|
||||
|
||||
// eslint-disable-next-line react/forbid-foreign-prop-types
|
||||
if (!hasDocgen(component) && !component.propTypes) {
|
||||
if (component.render) {
|
||||
processedComponent = component.render({}).type;
|
||||
}
|
||||
if (isMemo(component)) {
|
||||
processedComponent = component.type().type;
|
||||
}
|
||||
if (!hasDocgen(component) && !component.propTypes && isMemo(component)) {
|
||||
processedComponent = component.type().type;
|
||||
}
|
||||
|
||||
const extractedProps = extractComponentProps(processedComponent, section);
|
||||
|
Loading…
x
Reference in New Issue
Block a user