Handle excludedPropTypes option in withInfo

This commit is contained in:
Hypnosphi 2018-04-27 02:03:05 +03:00
parent 6286f129b2
commit d938f53181

View File

@ -78,6 +78,7 @@ function addInfo(storyFn, context, infoOptions) {
maxPropArrayLength: options.maxPropArrayLength,
maxPropsIntoLine: options.maxPropsIntoLine,
maxPropStringLength: options.maxPropStringLength,
excludedPropTypes: options.excludedPropTypes,
};
return <Story {...props}>{storyFn(context)}</Story>;
}