mirror of
https://github.com/DocNR/POWR.git
synced 2025-05-24 19:02:11 +00:00
11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
// app/(tabs)/library/(tabs)/programs.tsx
|
|
import { View } from 'react-native';
|
|
import { Text } from '@/components/ui/text';
|
|
|
|
export default function ProgramsScreen() {
|
|
return (
|
|
<View className="flex-1 items-center justify-center">
|
|
<Text>Programs (Coming Soon)</Text>
|
|
</View>
|
|
);
|
|
} |