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 (
); } else { return (

Sign in  or  sign up  to add comments on this article.

); } }; export default CommentContainer;