react-autobind-helper
v1.0.0
Published
Helper to autobind methods when creating a React Class
Downloads
4
Maintainers
Readme
React Autobind Helper
/** Basic Usage **/
import React from 'react';
import autobind from 'react-autobind-helper';
class example extends React.Component{
constructor(props){
super(props);
autobind( this );
}
}