nooop

Just a no-operation funciton.


Keywords
noop, function
License
MIT
Install
npm install nooop@1.0.0

Documentation

noop

Just a no-operation function.

Install

npm install noop --save 

Usage

import React, { Component, PropTypes } from 'react';
import noop from 'noop';

class Child extends Component {
  static propTypes = {
    onClick: PropTypes.func
  };

  static defaultProps = {
    onClick: noop
  };
}