mirror of
https://gh-proxy.org/https://github.com/tiajinsha/JKVideo
synced 2026-07-07 23:18:38 +08:00
10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
import { Stack } from 'expo-router';
|
|
|
|
export default function VideoLayout() {
|
|
return (
|
|
<Stack screenOptions={{ headerShown: false }}>
|
|
<Stack.Screen name="[bvid]" />
|
|
</Stack>
|
|
);
|
|
}
|