Files
react-native-web/docs/components/ListView.md
Nicolas Gallagher 565ec2fee8 Docs: minor update
2015-09-20 15:50:22 -07:00

412 B

ListView

TODO

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 />
    )
  }
}