import React from 'react';
import PropTypes from 'prop-types';
import Label from './Label';
import Input from './Input';
function Row({ label, input }) {
return (
{label}
{input}
);
}
Row.propTypes = {
label: PropTypes.instanceOf(Label),
input: PropTypes.instanceOf(Input).isRequired,
};
Row.defaultProps = {
label: null,
};
export default Row;