UNPKG

@react-native-ohos/pull-to-refresh

Version:
12 lines (10 loc) 400 B
import React from 'react'; import {Platform, RefreshControlProps} from 'react-native'; import {PullToRefresh} from './PullToRefresh'; export default function PullToRefreshControl(props: RefreshControlProps) { if (Platform.OS === 'android') { return React.createElement(PullToRefresh, props); } // @ts-ignore return React.createElement(PullToRefresh.DefaultHeader, props); }