UNPKG

@polkadot/react-api

Version:

A collection of RxJs React components the Polkadot JS API

15 lines (13 loc) 566 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = withMulti; // Copyright 2017-2020 @polkadot/react-api authors & contributors // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. function withMulti(Component, ...hocs) { // NOTE: Order is reversed so it makes sense in the props, i.e. component // after something can use the value of the preceding version return hocs.reverse().reduce((Component, hoc) => hoc(Component), Component); }