Last active
March 6, 2020 04:02
-
-
Save rodoabad/722c1f6b2105734335fed9984e193a10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
export const CommentList = ({ | |
comments, | |
isLoading | |
}) => { | |
if (isLoading) { | |
return 'Loading'; | |
} | |
if (comments.length === 0) { | |
return 'No comments yet'; | |
} | |
} | |
CommentList.defaultProps = { | |
comments: [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment