Rewrite documentation

This commit is contained in:
Nicolas Gallagher
2015-09-07 09:38:25 -07:00
parent 6bb6a17046
commit abf2c0307f
11 changed files with 627 additions and 176 deletions
+41
View File
@@ -0,0 +1,41 @@
# 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 />
)
}
}
```