From d87cea9ff2467f93be28533938dfc3a3e5c0c937 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sun, 12 May 2024 18:04:15 +0530 Subject: Add home and clock on top --- App.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'App.tsx') diff --git a/App.tsx b/App.tsx index 1b42456..6c2c0dc 100644 --- a/App.tsx +++ b/App.tsx @@ -1,8 +1,9 @@ import React, {useState} from 'react'; -import {SafeAreaView, Text, View} from 'react-native'; +import {SafeAreaView} from 'react-native'; import {InstalledApps} from 'react-native-launcher-kit'; import Swiper from 'react-native-swiper'; import {AppList} from './src/screens/AppList'; +import {Home} from './src/screens/Home'; function App(): React.JSX.Element { const [apps, setApps] = useState(() => InstalledApps.getSortedApps()); @@ -20,9 +21,7 @@ function App(): React.JSX.Element { activeDot={<>} index={screenIndex} onIndexChanged={setScreenIndex}> - - Wow - + -- cgit v1.3.1