In case compose is used there is an error JSX element type ‘Option’ does not have any construct or call signatures. \'redux\' version - 3.7.2
compose
JSX element type ‘Option’ does not have any construct or call signatures.
An updated answer; use the generics for compose:
import React, { ComponentType, FC } from 'react'; export default compose( withWidth, connect( mapStateToProps, mapDispatchToProps ) )(Search)