import React from 'react'; export default class extends React.Component { render () { if (this.props.list.type === 'all') { if (this.props.emptyMessage) { /* jshint ignore:start */ return (
  • {this.props.emptyMessage}

    {gettext("Why not start one yourself?")}

  • ); /* jshint ignore:end */ } else { /* jshint ignore:start */ return (
  • {this.props.category.special_role ? gettext("There are no threads on this forum... yet!") : gettext("There are no threads in this category.")}

    {gettext("Why not start one yourself?")}

  • ); /* jshint ignore:end */ } } else { /* jshint ignore:start */ return
  • {gettext("No threads matching specified criteria were found.")}
  • ; /* jshint ignore:end */ } } }