import { Component } from 'react'; import { I18n } from 'react-i18nify'; import Comment from './comment.component'; /** * A wrapper component for a highlighted component. * @class * @augments Component * @todo It's not used right now */ export default class FeaturedComment extends Component { render() { return (

{ I18n.t("components.featured_comment.title") }

); } }