import React from "react"; type PropsWithChildren = Required; export const composeWrappers = ( wrappers: React.FunctionComponent[], ): React.FunctionComponent => { return wrappers .reverse() .reduce((Acc, Current): React.FunctionComponent => { // eslint-disable-next-line react/display-name return (props) => ( ); }); };