import { H4 } from '@expo/html-elements'; import * as React from 'react'; import { StyleSheet, View, ScrollView } from 'react-native'; export function Page({ children }: { children: any }) { return {children}; } export function ScrollPage({ children }: { children: any }) { return ( {children} ); } export function Section({ title, children, row }: { title: string; children: any; row?: boolean }) { return (

{title}

{children}
); }