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