ScrollPage.js 317 B

12345678910111213
  1. import React from "react";
  2. import { ScrollView } from "react-native";
  3. export default function scrollPage(props) {
  4. return (
  5. <ScrollView
  6. style={[props.style]}
  7. contentContainerStyle={{ flexGrow: 1 }}
  8. >
  9. {props.children}
  10. </ScrollView>
  11. );
  12. }