import ArticlePreview from './ArticlePreview'; import ListPagination from './ListPagination'; import React from 'react'; const ArticleList = props => { if (!props.articles) { return (
Loading...
); } if (props.articles.length === 0) { return (
No articles are here... yet.
); } return (
{ props.articles.map(article => { return ( ); }) }
); }; export default ArticleList;