mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 19:41:25 +02:00
- Move finance, mail, moodlit to apps-archived for later development - Rename games/voxel-lava to games/voxelava 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
585 B
TypeScript
23 lines
585 B
TypeScript
import { View } from 'react-native';
|
|
|
|
import { Stack, useLocalSearchParams } from 'expo-router';
|
|
|
|
import { Container } from '@/components/Container';
|
|
import { ScreenContent } from '@/components/ScreenContent';
|
|
|
|
export default function Details() {
|
|
const { name } = useLocalSearchParams();
|
|
|
|
return (
|
|
<View className={styles.container}>
|
|
<Stack.Screen options={{ title: 'Details' }} />
|
|
<Container>
|
|
<ScreenContent path="screens/details.tsx" title={`Showing details for user ${name}`} />
|
|
</Container>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = {
|
|
container: 'flex flex-1 bg-black',
|
|
};
|