mirror of
https://github.com/DocNR/POWR.git
synced 2025-04-19 19:01:18 +00:00
17 lines
327 B
TypeScript
17 lines
327 B
TypeScript
// app/(social)/_layout.tsx
|
|
import React from 'react';
|
|
import { Stack } from 'expo-router';
|
|
|
|
export default function SocialLayout() {
|
|
return (
|
|
<Stack>
|
|
<Stack.Screen
|
|
name="workout/[id]"
|
|
options={{
|
|
headerShown: false,
|
|
presentation: 'card'
|
|
}}
|
|
/>
|
|
</Stack>
|
|
);
|
|
} |