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