Cart
The cart module is a fully encapsulated cart component, with all cart interactions such as changing quantity or removing an item.

Usage
import React, { FC } from 'react';
import { LiquidCart } from '@liquidcloud/modules-react';
const Component: FC = () => {
return (
<LiquidCart
mode="standard"
header={true}
footer={true}
onClickContinueShopping={() => {
// handle continue shopping button click
}}
onCheckout={() => {
// navigate to checkout page
}}
/>
);
};
export default Component;
Properties
property
type
default
description
Last updated