ReactPropTypes-Plugin
ReactPropTypes-Plugin copied to clipboard
Does not work when component is wrapped with memo
The plugin does not recognize the component if it is wrapped with memo
example:
export const MyComponent = memo(props => {
return (
<div>{props.text}</div>
);
})
@ginvaell This will be fixed in the next version.