// jshint ignore:start import React from 'react'; import PostFooter from './footer'; import MisagoMarkup from 'misago/components/misago-markup'; export default function(props) { let className = 'post post-infeed'; if (!props.post.is_read) { className += ' post-new'; } return (
  • ); } export function PostBody(props) { if (props.content) { return (
    ); } return (

    {gettext("This post's contents cannot be displayed.")}

    {gettext("This error is caused by invalid post content manipulation.")}

    ); }