import { ViewStyle } from '@expo/html-elements/build/primitives/View';
import { spacing } from '@expo/styleguide-native';
import { Heading, Row } from 'expo-dev-client-components';
import * as React from 'react';
type Props = {
header: string;
style?: ViewStyle;
};
export function SectionHeader({ header, style }: Props) {
return (
{header}
);
}