import { useTranslate } from 'i18n-calypso'; import './empty-cart.scss'; const EmptyCart: React.FC = () => { const translate = useTranslate(); return (
{ translate( 'Your cart is empty' ) }
{ translate( 'Add one or more products to your cart and checkout in one step.' ) }
); }; export default EmptyCart;