import { h } from 'preact'; import PropTypes from 'prop-types'; export const LoadingArticle = ({ version }) => { const bigPicArea = version === 'featured' ?
: ''; const smallPic = version === 'featured' ? ( '' ) : (
); return (
{bigPicArea} {smallPic}

 

 

); }; LoadingArticle.propTypes = { version: PropTypes.string.isRequired, };