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