We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dear all,
thank you for your amazing library. I would like to share with you the following warning I am getting on the initial rendering of my form:
I am using react-times in conjunction with redux-form. I created a render component for rudux-form as following:
react-times
redux-form
render component
rudux-form
export const renderTimePicker = ({input, meta: {error}, withoutIcon, timeMode = "24", className}) => { return ( <div className="form-group"> {error && <span className="error-message">{error}</span>} <TimePicker className={className} onTimeChange={input.onChange} time={moment(input.value).format("HH:mm")} timeMode={timeMode} theme="classic" withoutIcon={withoutIcon} /> </div> ); };
Versions
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Dear all,
thank you for your amazing library.
I would like to share with you the following warning I am getting on the initial rendering of my form:
I am using
react-times
in conjunction withredux-form
.I created a
render component
forrudux-form
as following:Versions
The text was updated successfully, but these errors were encountered: