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

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

); export default Info;