Skip to content

Instantly share code, notes, and snippets.

@tmeasday
Created April 20, 2017 04:51
Show Gist options
  • Select an option

  • Save tmeasday/2674e8bc694c8087e5cd4c6cafd2da8e to your computer and use it in GitHub Desktop.

Select an option

Save tmeasday/2674e8bc694c8087e5cd4c6cafd2da8e to your computer and use it in GitHub Desktop.
import React from 'react';
export default function({loading, comments, totalCount}) {
if (loading) {
return <div>empty</div>;
}
if (comments.length === 0) {
return <div>loading</div>;
}
return <div>{comments.length} of {totalCount}</div>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment