react-rainbow icon indicating copy to clipboard operation
react-rainbow copied to clipboard

create bind util method

Open TahimiLeonBravo opened this issue 4 years ago • 0 comments

Description:

instead of binding manually all methods in constructor like:

this.handleScrollDownArrowHover = this.handleScrollDownArrowHover.bind(this); this.handleScrollUpArrowHover = this.handleScrollUpArrowHover.bind(this);

we can: bind({ methods: [ 'handleScrollDownArrowHover', 'handleScrollUpArrowHover', ], to: this, });

TahimiLeonBravo avatar Nov 27 '19 19:11 TahimiLeonBravo