mirror of
https://github.com/zoriya/react-native-web.git
synced 2026-05-18 12:49:24 +00: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 />
)
}
}