import React from "react"; import { ScrollView } from "react-native"; export default function scrollPage(props) { return ( <ScrollView style={[props.style]} contentContainerStyle={{ flexGrow: 1 }} > {props.children} </ScrollView> ); }