UNPKG

705 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 });
6exports.Share = void 0;
7var react_compose_1 = __importDefault(require("@shopify/react-compose"));
8var withStatelessFeature_1 = __importDefault(require("./utilities/withStatelessFeature"));
9/**
10 * The UI component for the Share feature
11 * @public
12 * */
13function Share() {
14 return null;
15}
16exports.Share = Share;
17/**
18 * The Share feature with its reducer, actions and UI component
19 * @public
20 * */
21exports.default = react_compose_1.default(withStatelessFeature_1.default('share'))(Share);