Fix Error: Attempted import error: 'FlatListProps' is not exported from 'react-native-web/dist/index'.

This commit is contained in:
Bruno Lemos
2019-05-04 00:16:10 -03:00
parent fe190bade5
commit bd80e56f91

View File

@@ -1 +1,5 @@
export { FlatList, FlatListProps } from 'react-native'
import { FlatListProps as OriginalFlatListProps } from 'react-native'
export interface FlatListProps<ItemT> extends OriginalFlatListProps<ItemT> {}
export { FlatList } from 'react-native'