UNPKG

react-with-breakpoints

Version:

Utility React component for altering the visual experience of responsive and lean webpages.

31 lines 1.37 kB
"use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; result["default"] = mod; return result; }; Object.defineProperty(exports, "__esModule", { value: true }); var React = __importStar(require("react")); var index_1 = require("./utils/index"); var withBreakpoints = function (WrappedComponent) { var Component = function (props) { return (React.createElement(index_1.Context.Consumer, null, function (payload) { return React.createElement(WrappedComponent, __assign({}, props, { currentBreakpoint: payload.currentBreakpoint })); })); }; Component.displayName = "withBreakpoints(" + (WrappedComponent.displayName || WrappedComponent.name || 'Component') + ")"; return Component; }; exports.default = withBreakpoints; //# sourceMappingURL=withBreakpoints.js.map