/** @format */ /** * External dependencies */ import classnames from 'classnames'; import { Component } from '@wordpress/element'; import PropTypes from 'prop-types'; import { range } from 'lodash'; class ActivityCardPlaceholder extends Component { render() { const { className, hasAction, hasDate, hasSubtitle, lines } = this.props; const cardClassName = classnames( 'woocommerce-activity-card is-loading', className ); return (