mirror of
https://github.com/DocNR/POWR.git
synced 2025-05-24 19:02:11 +00:00
15 lines
272 B
TypeScript
15 lines
272 B
TypeScript
![]() |
// app/(workout)/_layout.tsx
|
||
|
import { Stack } from 'expo-router';
|
||
|
|
||
|
export default function WorkoutLayout() {
|
||
|
return (
|
||
|
<Stack>
|
||
|
<Stack.Screen
|
||
|
name="new-exercise"
|
||
|
options={{
|
||
|
title: 'New Exercise'
|
||
|
}}
|
||
|
/>
|
||
|
</Stack>
|
||
|
);
|
||
|
}
|