import React from "react"; import { ScrollView, RefreshControl } from "react-native"; function scrollPage(Component) { class NewPage extends React.Component { constructor(props) { super(props); this.state = { refreshing: false, }; } _onRefresh = () => { this.setState({ refreshing: true }); fetchData().then(() => { this.setState({ refreshing: false }); }); }; render(props) { return ( } > ); } } return () => { return ; }; } export default scrollPage;