Initial commit

This commit is contained in:
2026-09-10 14:08:41 +02:00
commit f12ad18e92
74 changed files with 21214 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import {Stack} from 'expo-router';
export default function InvoiceLayout() {
return (
<Stack screenOptions={{headerShown: false}}>
<Stack.Screen name="index" />
<Stack.Screen name="[id]" />
</Stack>
);
}