import React from 'react';

const Nothing = React.createClass({
    displayName: 'Nothing',
    // render nothing
    render() {
        return false;
    },
});

export default Nothing;
