nooop
v1.0.0
Published
Just a no-operation funciton.
Downloads
74
Readme
nooop
Just a no-operation function.
Install
npm install nooop --save
Usage
import React, { Component, PropTypes } from 'react';
import noop from 'nooop';
class Child extends Component {
static propTypes = {
onClick: PropTypes.func
};
static defaultProps = {
onClick: noop
};
}