mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-29 16:57:42 +02:00
Applied formatting to 1487+ files using pnpm format:write - TypeScript/JavaScript files - Svelte components - Astro pages - JSON configs - Markdown docs 13 files still need manual review (Astro JSX comments)
13 lines
345 B
TypeScript
13 lines
345 B
TypeScript
import { StatusBar } from 'expo-status-bar';
|
|
import { Platform } from 'react-native';
|
|
|
|
import { ScreenContent } from '~/components/ScreenContent';
|
|
|
|
export default function Modal() {
|
|
return (
|
|
<>
|
|
<ScreenContent path="app/modal.tsx" title="Modal"></ScreenContent>
|
|
<StatusBar style={Platform.OS === 'ios' ? 'light' : 'auto'} />
|
|
</>
|
|
);
|
|
}
|