Files
mariani_mobile/app/automation/_layout.tsx

11 lines
234 B
TypeScript

import { Stack } from "expo-router";
export default function AutomationLayout() {
return (
<Stack screenOptions={{headerShown: false}}>
<Stack.Screen name="index" />
<Stack.Screen name="[id]" />
</Stack>
);
}