Files
JKVideo/app/video/_layout.tsx

10 lines
197 B
TypeScript

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