import { Component, PropTypes } from 'react'; import { I18n } from 'react-i18nify'; /** * A simple static component with the comment's order selector markup * @class * @augments Component * @todo Needs a proper implementation */ class CommentOrderSelector extends Component { constructor(props) { super(props); this.state = { orderBy: this.props.defaultOrderBy } } componentDidMount() { $(document).foundation(); } render() { const { orderBy } = this.state; return (