mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 01:06: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)
6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
import React from 'react';
|
|
import { Stack } from 'expo-router';
|
|
|
|
export default function AuthLayout() {
|
|
return <Stack screenOptions={{ headerShown: false }} />;
|
|
}
|