POWR/app/(workout)/_layout.tsx
2025-02-09 20:38:38 -05:00

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>
);
}