import React, {ComponentType} from "react"; export function Decorate
(Component: ComponentType
, preProps: Partial
) { return (props) => React.createElement(Component, {...preProps, ...props}); }