import React from 'react' import PropTypes from 'prop-types' import { translate } from 'react-i18next' const Search = props => { return (
  • ) } export default translate()(Search) Search.propTypes = { onChangeInput: PropTypes.func.isRequired, onClickSubmit: PropTypes.func.isRequired }