import type { RefreshControlProps } from 'react-native' import { RefreshControl as RNRefreshControl } from 'react-native' import { copyComponentProperties } from '../utils' import { generateDataSet } from './generateDataSet' import { toRNWClassName } from './rnw' export const RefreshControl = copyComponentProperties(RNRefreshControl, (props: RefreshControlProps) => { return ( ) }) export default RefreshControl