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

405 B

ListView

Props

children any

Content to display over the image.

style style

  • property type

Defaults:

{
}

Examples

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

const { Component, PropTypes } = React;

class Example extends Component {
  static propTypes = {
  }

  static defaultProps = {
  }

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