UNPKG

@wener/ui

Version:

7 lines (5 loc) 246 B
import React from 'react'; /// add default props to WrappedComponent export function withProps(WrappedComponent: React.ElementType, extra: any) { return (props: any) => React.createElement(WrappedComponent, Object.assign({}, props, extra)); }