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