No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit hace 3 años
..
dist First Commit hace 3 años
src First Commit hace 3 años
LICENSE First Commit hace 3 años
README.md First Commit hace 3 años
package.json First Commit hace 3 años

README.md

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:
    get eventProps() {
      return makeEventProps(this.props, () => this.state.pdf);
    }
    
  • Use your event props:
    render() {
      return (
        <div {...this.eventProps} />
      );
    }
    

License

The MIT License.

Author

Wojciech Maj
kontakt@wojtekmaj.pl
http://wojtekmaj.pl