This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
interaktive-systeme/app/(tabs)/budget/_layout.tsx

14 lines
No EOL
393 B
TypeScript

import { Stack } from "expo-router";
import { useTheme } from "../../contexts/ThemeContext";
export default function _Layout() {
const { colors } = useTheme();
return (
<Stack initialRouteName="index" screenOptions={{
headerShown: false
}}>
<Stack.Screen name="index"/>
<Stack.Screen name="addCategory"/>
</Stack>
);
}