make-event-props
TypeScript icon, indicating that this package has built-in type declarations

1.6.2 • Public • Published

npm downloads CI

Make-Event-Props

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.

tl;dr

  • 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:
    const eventProps = useMemo(
      () => makeEventProps(props, (eventName) => additionalArgs),
      [additionalArgs],
    );
  • Use your event props:
    return <div {...eventProps} />;

License

The MIT License.

Author

Wojciech Maj Wojciech Maj

Dependencies (0)

    Dev Dependencies (11)

    Package Sidebar

    Install

    npm i make-event-props

    Weekly Downloads

    1,049,704

    Version

    1.6.2

    License

    MIT

    Unpacked Size

    51.5 kB

    Total Files

    15

    Last publish

    Collaborators

    • wojtekmaj