You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the prop type is defined as textComponent: PropTypes.func, A better prop type would be textComponent: PropTypes.oneOfType([PropTypes.func, PropTypes.Object]) to allow components that are classes.
The text was updated successfully, but these errors were encountered:
Right now the prop type is defined as
textComponent: PropTypes.func,
A better prop type would betextComponent: PropTypes.oneOfType([PropTypes.func, PropTypes.Object])
to allow components that are classes.The text was updated successfully, but these errors were encountered: