import React from 'react'
import { translate } from 'react-i18next'
import i18n from '../../../i18n.js'
export const SelectStatus = props => {
translate.setI18n(props.i18n ? props.i18n : i18n) // mandatory to allow Apps to overrides trad
return (
{props.t('Input.SelectStatus.file_status')}
)
}
export default translate()(SelectStatus)