First commit of the new app

This commit is contained in:
2026-05-26 09:18:37 +01:00
parent 295d1bda21
commit b427fb0f85
110 changed files with 6483 additions and 833 deletions

View File

@@ -0,0 +1,22 @@
import styles from '@/styles/screens/reserva/detail.styles';
import { ReactNode } from 'react';
import { Text, View } from 'react-native';
import { DashedDivider } from './DashedDivider';
type Props = {
title?: string;
children: ReactNode;
};
export function Section({ title, children }: Props) {
return (
<View style={styles.summaryCard}>
{!!title && (
<>
<Text style={styles.sectionTitle}>{title}</Text>
</>
)}
{children}
</View>
);
}