Files
react/components/utils/with-defaults.ts

13 lines
288 B
TypeScript

import React from 'react'
const withDefaults = <P, DP>(
component: React.ComponentType<P>,
defaultProps: DP,
) => {
type Props = Partial<DP> & Omit<P, keyof DP>
component.defaultProps = defaultProps
return component as React.ComponentType<Props>
}
export default withDefaults