import React from 'react' const withDefaults =
( component: React.ComponentType
,
defaultProps: DP
): React.ComponentType > => {
type Props = Partial
component.defaultProps = defaultProps as unknown as Partial
return component as unknown as React.ComponentType