Returns an object with on-event callback props curried with provided args.
npm install make-event-props !downloads 
A function that, given props, returns an object of event callback props optionally curried with additional arguments.
This package allows you to pass event callback props to a rendered DOM element without the risk of applying any invalid props that could cause unwanted side effects.
- Install by executing npm install make-event-props or yarn add make-event-props.
- Import by adding import makeEventProps from 'make-event-props'.
- Create your event props object:
``ts`
const eventProps = useMemo(
() => makeEventProps(props, (eventName) => additionalArgs),
[additionalArgs],
);
`
- Use your event props:
tsx``
return ;
The MIT License.
Wojciech Maj |