import React from "react"; type PropsWithChildren = Required; export const composeWrappers = ( wrappers: React.FunctionComponent[], ): React.FunctionComponent => { return wrappers.reverse().reduce((Acc, Current): React.FunctionComponent => { return (props) => ( ); }); };