Files
react-native-web/docs/components/ListView.md
2016-06-14 13:47:47 -07:00

33 lines
412 B
Markdown

# ListView
TODO
## Props
**children**: any
Content to display over the image.
**style**: style
+ ...[View#style](View.md)
## Examples
```js
import React, { Component, PropTypes } from 'react'
import { ListView } from 'react-native'
export default class ListViewExample extends Component {
static propTypes = {}
static defaultProps = {}
render() {
return (
<ListView />
)
}
}
```