diff options
| author | Akshay Nair <phenax5@gmail.com> | 2024-05-12 18:04:15 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2024-09-29 16:16:38 +0530 |
| commit | d87cea9ff2467f93be28533938dfc3a3e5c0c937 (patch) | |
| tree | f4990814079a2fcaab7906c740ba04add28fa9e5 /src/screens/Home.tsx | |
| parent | 8995438b9a8649d30d870826d0f8fbf283d68933 (diff) | |
| download | daft-launcher-d87cea9ff2467f93be28533938dfc3a3e5c0c937.tar.gz daft-launcher-d87cea9ff2467f93be28533938dfc3a3e5c0c937.zip | |
Add home and clock on top
Diffstat (limited to '')
| -rw-r--r-- | src/screens/Home.tsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/screens/Home.tsx b/src/screens/Home.tsx new file mode 100644 index 0000000..da24e13 --- /dev/null +++ b/src/screens/Home.tsx @@ -0,0 +1,14 @@ +import React, {useMemo} from 'react'; +import {Text, View} from 'react-native'; +import {Clock} from '../components/Clock'; + +export const Home: React.FC = () => { + return ( + <View> + <Clock /> + <View className="p-6"> + <Text>Favorites list</Text> + </View> + </View> + ); +}; |
