import PropTypes from 'prop-types'; import React from 'react'; import PullToRefresh from './pull_to_refresh'; /** * Pullable: * Basic "pull to refresh" without the refresh. * Just visual feedback. */ export default class Pullable extends React.Component { static propTypes = { children: PropTypes.node.isRequired, } render() { const { children } = this.props; return ( {children} ); } }