@e-group/material-form
Version:
Custom react components for integrate redux-form.
18 lines (17 loc) • 463 B
TypeScript
export default RadioField;
declare function RadioField({ radioValue, input: { value, ...otherInput }, meta, ...other }: {
[x: string]: any;
radioValue: any;
input: {
[x: string]: any;
value: any;
};
meta: any;
}): JSX.Element;
declare namespace RadioField {
namespace propTypes {
const input: PropTypes.Validator<object>;
const meta: PropTypes.Validator<object>;
}
}
import PropTypes from "prop-types";