Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
1.06 kB
import CommentInput from './CommentInput';
import CommentList from './CommentList';
import { Link } from 'react-router-dom';
import React from 'react';
const CommentContainer = props => {
if (props.currentUser) {
return (
<div className="col-xs-12 col-md-8 offset-md-2">
<div>
<list-errors errors={props.errors}></list-errors>
<CommentInput slug={props.slug} currentUser={props.currentUser} />
</div>
<CommentList
comments={props.comments}
slug={props.slug}
currentUser={props.currentUser} />
</div>
);
} else {
return (
<div className="col-xs-12 col-md-8 offset-md-2">
<p>
<Link to="/login">Sign in</Link>
&nbsp;or&nbsp;
<Link to="/register">sign up</Link>
&nbsp;to add comments on this article.
</p>
<CommentList
comments={props.comments}
slug={props.slug}
currentUser={props.currentUser} />
</div>
);
}
};
export default CommentContainer;