UNPKG

681 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 Print feature
10 * @public
11 * */
12function Print() {
13 return null;
14}
15exports.Print = Print;
16/**
17 * The Print feature with its reducer, actions and UI component
18 * @public
19 * */
20exports.default = react_compose_1.default(withStatelessFeature_1.default('print'))(Print);