mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Removed console log
This commit is contained in:
parent
dc196ddeb1
commit
8e0efd8bfa
1 changed files with 0 additions and 1 deletions
|
@ -3,7 +3,6 @@ import Comment from './Comment';
|
||||||
const Replies = (props) => {
|
const Replies = (props) => {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{console.log(props.replies)}
|
|
||||||
{props.replies.map((reply => <Comment comment={reply} key={reply.id} />))}
|
{props.replies.map((reply => <Comment comment={reply} key={reply.id} />))}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue