POWR/app/(workout)/_layout.tsx

15 lines
272 B
TypeScript
Raw Normal View History

2025-02-09 20:38:38 -05:00
// 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>
);
}