import React from 'react' const withDefaults = ( component: React.ComponentType

, defaultProps: DP, ) => { type Props = Partial & Omit component.defaultProps = defaultProps return (component as React.ComponentType) as React.ComponentType } export default withDefaults