Just a no-operation funciton.
npm install nooop> Just a no-operation function.
``bash`
npm install nooop --save
`js
import React, { Component, PropTypes } from 'react';
import noop from 'nooop';
class Child extends Component {
static propTypes = {
onClick: PropTypes.func
};
static defaultProps = {
onClick: noop
};
}
``
---