/**
*
* UnknownInput
*
*/
import React from 'react';
import PropTypes from 'prop-types';
const UnknownInput = ({ type }) =>
This {type} is not available
;
UnknownInput.defaultProps = {
type: null,
};
UnknownInput.propTypes = {
type: PropTypes.string,
};
export default UnknownInput;