File size: 489 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import { useTranslate } from 'i18n-calypso';
import './empty-cart.scss';
const EmptyCart: React.FC = () => {
const translate = useTranslate();
return (
<div className="jetpack-cloud-cart__empty">
<div className="jetpack-cloud-cart__empty-title">{ translate( 'Your cart is empty' ) }</div>
<div className="jetpack-cloud-cart__empty-info">
{ translate( 'Add one or more products to your cart and checkout in one step.' ) }
</div>
</div>
);
};
export default EmptyCart;
|