import { FC } from 'react' export const compose = (...hocs: any[]) => (Component: FC) => hocs.reduceRight((AccumulatedComponent, hoc) => hoc(AccumulatedComponent), Component)