UNPKG

674 BJavaScriptView Raw
1"use strict";
2var __importDefault = (this && this.__importDefault) || function (mod) {
3 return (mod && mod.__esModule) ? mod : { "default": mod };
4};
5Object.defineProperty(exports, "__esModule", { value: true });
6var react_compose_1 = __importDefault(require("@shopify/react-compose"));
7var withStatelessFeature_1 = __importDefault(require("./utilities/withStatelessFeature"));
8/**
9 * The UI component for the Cart feature
10 * @public
11 * */
12function Cart() {
13 return null;
14}
15exports.Cart = Cart;
16/**
17 * The Cart feature with its reducer, actions and UI component
18 * @public
19 * */
20exports.default = react_compose_1.default(withStatelessFeature_1.default('cart'))(Cart);