import React from 'react'
import classnames from 'classnames'
import PropTypes from 'prop-types'
import { translate } from 'react-i18next'
import i18n from '../../i18n.js'
const PopinFixedOption = props => {
translate.setI18n(props.i18n ? props.i18n : i18n) // mandatory to allow Apps to overrides trad
return (
)
}
export default translate()(PopinFixedOption)
PopinFixedOption.propTypes = {
selectedStatus: PropTypes.object,
availableStatus: PropTypes.array,
i18n: PropTypes.object, // translate resource to overrides default one,
onClickNewVersionBtn: PropTypes.func,
onChangeStatus: PropTypes.func
}
PopinFixedOption.defaultProps = {
availableStatus: [],
i18n: {},
onClickNewVersionBtn: () => {}
}