# ScrollView ## Props **children** any Content to display over the image. **style** style + `property` type Defaults: ```js { } ``` ## Examples ```js import React, { ScrollView } from 'react-native-web' const { Component, PropTypes } = React; class Example extends Component { static propTypes = { } static defaultProps = { } render() { return ( ) } } ```