The plugin does not recognize the component if it is wrapped with memo example: ``` export const MyComponent = memo(props => { return ( <div>{props.text}</div> ); }) ```