Merge pull request #11195 from storybookjs/fix/doNotRender

Addon-docs: Remove render preprocessing for react components w/o docgen
This commit is contained in:
Michael Shilman 2020-06-16 20:09:51 +08:00 committed by GitHub
commit c3f48fd2eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);