mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-01-12 17:43:00 +08:00
412 B
412 B
ListView
TODO
Props
children: any
Content to display over the image.
style: style
propertytype
Defaults:
{
}
Examples
import React, { ListView } from 'react-native-web'
const { Component, PropTypes } = React;
class Example extends Component {
static propTypes = {
}
static defaultProps = {
}
render() {
return (
<ListView />
)
}
}