Remove extraneous character in react-native types

Remove extraneous `}` in `FlatList` `renderItem` definition
This commit is contained in:
Donald Hruska
2018-05-03 15:56:05 -05:00
committed by GitHub
parent 89c307ca87
commit 9c60961534

View File

@@ -3700,7 +3700,7 @@ export interface FlatListProps<ItemT> extends VirtualizedListProps<ItemT> {
* ```
* _renderItem = ({item}) => (
* <TouchableOpacity onPress={() => this._onPress(item)}>
* <Text>{item.title}}</Text>
* <Text>{item.title}</Text>
* <TouchableOpacity/>
* );
* ...