mirror of
https://github.com/DocNR/POWR.git
synced 2025-04-23 01:01:27 +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>
|
||
|
);
|
||
|
}
|