From 52bb6f812cb782eface9db58f800e9d86d09fec6 Mon Sep 17 00:00:00 2001 From: Jordan Hewitt Date: Thu, 13 Feb 2025 06:42:28 -0800 Subject: [PATCH] Work more on layout. --- app/_layout.tsx | 4 +++- app/index.tsx | 23 +++-------------------- 2 files changed, 6 insertions(+), 21 deletions(-) diff --git a/app/_layout.tsx b/app/_layout.tsx index bb7de70..c79da3c 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -1,5 +1,6 @@ import { Stack } from 'expo-router'; + export default function Layout() { return ( + > + ); } diff --git a/app/index.tsx b/app/index.tsx index aaa114e..a27bd7f 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -39,26 +39,9 @@ export default function Home() { return ( - - Settings - - - Home Screen - {conversation ? ( - - ) : ( - - )} - ) + + + ); }