30 lines
544 B
JavaScript
30 lines
544 B
JavaScript
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 (
|
|
<PullToRefresh
|
|
pullingContent={null}
|
|
refreshingContent={null}
|
|
>
|
|
{children}
|
|
</PullToRefresh>
|
|
);
|
|
}
|
|
|
|
}
|