Remove ListView docs

This commit is contained in:
Nicolas Gallagher
2017-06-09 14:50:03 -07:00
parent 79e6dbaab5
commit 6aa2ac1f70
3 changed files with 0 additions and 115 deletions
-34
View File
@@ -1,34 +0,0 @@
# ListView
TODO
## Props
[...ScrollView props](./ScrollView.md)
**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 />
)
}
}
```