import React from 'react'; import { t } from '../hocs'; const Info = ({ info, hover }) => (

{ hover ? t(hover) : t(info) }

); export default Info;