import React from 'react' import { translate } from 'react-i18next' // import PropTypes from 'prop-types' const Notification = props => { return (
  • {props.t('Archive Topic')}
    {props.t('Deleted File')}
  • ) } export default translate()(Notification)