diff options
| author | Akshay Nair <phenax5@gmail.com> | 2024-09-28 22:19:31 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2024-09-29 16:16:39 +0530 |
| commit | 34b8c1f962a5c835351dc6f4369757259998af16 (patch) | |
| tree | 6f836fdaaedfec125b1202f3b5f9ce24e6277f11 /src/screens/Home.tsx | |
| parent | a1143f3696a0b272018f7eea43ee23a674c618e1 (diff) | |
| download | daft-launcher-34b8c1f962a5c835351dc6f4369757259998af16.tar.gz daft-launcher-34b8c1f962a5c835351dc6f4369757259998af16.zip | |
Finish up app menu + fix drag interaction
Diffstat (limited to '')
| -rw-r--r-- | src/screens/Home.tsx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/screens/Home.tsx b/src/screens/Home.tsx index 7bd1a3f..0d694c0 100644 --- a/src/screens/Home.tsx +++ b/src/screens/Home.tsx @@ -1,17 +1,13 @@ import React from 'react'; import {View} from 'react-native'; import {Clock} from '../components/Clock'; -import {AppDetail} from 'react-native-launcher-kit/typescript/Interfaces/InstalledApps'; import {Favorites} from '../components/Favorites'; -export const Home: React.FC<{apps: AppDetail[]; active: boolean}> = ({ - apps, - active, -}) => { +export const Home: React.FC<{active: boolean}> = ({active}) => { return ( <View> <Clock /> - <Favorites apps={apps} active={active} /> + <Favorites active={active} /> </View> ); }; |
