import React from "react" export default class extends React.Component { render() { if (this.props.list.type === "all") { if (this.props.emptyMessage) { return (
  • {this.props.emptyMessage}

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

  • ) } else { 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?")}

  • ) } } else { return (
  • {gettext("No threads matching specified criteria were found.")}
  • ) } } }