UNPKG
react-native-web-lists
Version:
latest (0.1.1)
0.1.1
0.1.0
React Native for Web implementation of Lists
react-native-web-lists
/
src
/
FlatList.js
9 lines
(7 loc)
•
235 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
, {
PureComponent
}
from
'react'
;
import
MetroListView
from
'./MetroListView'
;
export
default
class
FlatList
extends
PureComponent
{
render
(
) {
return
<
MetroListView
{
...this.props
}
items
=
{this.props.data}
/>
; } }