Files
react-native-web/docs/components/ListView.md
Nicolas Gallagher abf2c0307f Rewrite documentation
2015-09-07 09:38:25 -07:00

42 lines
405 B
Markdown

# ListView
## 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 />
)
}
}
```