UNPKG

@modular-component/with-default-props

Version:

ModularComponent stage for handling default props. Part of the @modular-component/default package.

12 lines 315 B
export function defaultProps(defaultProps) { return { field: 'props', useStage: (args) => ({ ...(typeof defaultProps === 'function' ? defaultProps(args) : defaultProps), ...args.props, }), }; } //# sourceMappingURL=index.js.map