mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 11:46:43 +02:00
Restructure the context app (formerly basetext) to follow the monorepo pattern with proper workspace configuration. Changes: - Move app files to apps/context/apps/mobile/ - Rename package to @context/mobile - Update bundle ID to com.manacore.context - Create pnpm-workspace.yaml for project workspace - Add dev scripts to root package.json - Update CLAUDE.md with project documentation The app structure is prepared for future web/backend additions. Note: Existing TypeScript errors in the original codebase are preserved. These should be fixed in a follow-up PR. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
453 B
TypeScript
17 lines
453 B
TypeScript
import { Stack, useLocalSearchParams } from 'expo-router';
|
|
|
|
import { Container } from '~/components/Container';
|
|
import { ScreenContent } from '~/components/ScreenContent';
|
|
|
|
export default function Details() {
|
|
const { name } = useLocalSearchParams();
|
|
|
|
return (
|
|
<>
|
|
<Stack.Screen options={{ title: 'Details' }} />
|
|
<Container>
|
|
<ScreenContent path="screens/details.tsx" title={`Showing details for user ${name}`} />
|
|
</Container>
|
|
</>
|
|
);
|
|
}
|