Skip to content

Favorites

The Favorites page shows customer’s favorites products. If there are none, it shows empty favorites view.

May not be available, depending on shop configuration.

Main portals available on Favorites page are listed on Favorites List portals reference page.

import React from 'react';
import { Link } from '@shopgate/engage/components';
import { FAVORITES_PATH } from '@shopgate/engage/favorites';
const Component = () => (
<Link href={FAVORITES_PATH}>Open favorites page</Link>
);
export default Component;