import React from 'react'; import { FlatList } from 'react-native'; import type { ImageStyle } from '@d11/react-native-fast-image'; interface AuthContextProps { children: ImageStyle; } const TVirtualizedList: React.FC = ({ children }): any => { return ( '' + index} renderItem={null} bounces={false} ListHeaderComponent={<>{children}} /> ); }; export default TVirtualizedList;