You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_layout.jsx 216B

123456789
  1. import { Stack } from "expo-router";
  2. export default function NotifyLayout() {
  3. return(
  4. <Stack>
  5. <Stack.Screen name="index" options={{headerShown:false}}></Stack.Screen>
  6. </Stack>
  7. )
  8. }