mattermost-mobile/app/components/refresh_list/refresh_list.js
2018-06-19 19:14:50 -04:00

19 lines
456 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {PureComponent} from 'react';
import {RefreshControl} from 'react-native';
export default class RefreshList extends PureComponent {
static propTypes = {
...RefreshControl.propTypes,
};
render() {
return (
<RefreshControl
{...this.props}
/>
);
}
}