Files
react-native-web/docs/components/ListView.md
Nicolas Gallagher 565ec2fee8 Docs: minor update
2015-09-20 15:50:22 -07:00

43 lines
412 B
Markdown

# ListView
TODO
## Props
**children**: any
Content to display over the image.
**style**: style
+ `property` type
Defaults:
```js
{
}
```
## Examples
```js
import React, { ListView } from 'react-native-web'
const { Component, PropTypes } = React;
class Example extends Component {
static propTypes = {
}
static defaultProps = {
}
render() {
return (
<ListView />
)
}
}
```