refactor: split app into modular src architecture
Some checks failed
Luggage List Build / release (push) Has been cancelled
Luggage List Build / build-android (push) Has been cancelled
Luggage List Build / build-web (push) Has been cancelled

This commit is contained in:
2026-04-18 12:56:12 +02:00
parent 3323d09dda
commit bdea52b7c6
17 changed files with 1493 additions and 1343 deletions

12
src/components/Field.js Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react';
import { Text, View } from 'react-native';
import { styles } from '../styles';
export default function Field({ label, children }) {
return (
<View style={styles.fieldWrap}>
<Text style={styles.label}>{label}</Text>
{children}
</View>
);
}