// Copyright 2017-2026 @pezkuwi/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; type HOC = (Component: React.ComponentType) => React.ComponentType; export default function withMulti (Component: React.ComponentType, ...hocs: HOC[]): React.ComponentType { // 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): React.ComponentType => hoc(Component), Component ); }