Files
react-native-web/docs/components/ListView.md
2015-12-19 10:59:22 -08:00

393 B

ListView

TODO

Props

children: any

Content to display over the image.

style: style

Examples

import React, { Component, ListView, PropTypes } from 'react-native-web'

export default class ListViewExample extends Component {
  static propTypes = {}

  static defaultProps = {}

  render() {
    return (
      <ListView />
    )
  }
}