diff options
| author | Akshay Nair <phenax5@gmail.com> | 2024-09-28 13:46:22 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2024-09-29 16:16:39 +0530 |
| commit | a1143f3696a0b272018f7eea43ee23a674c618e1 (patch) | |
| tree | 2289e6a1fbf47d339cb41849f9554d403bd837cc /src/components/Clock.tsx | |
| parent | 5d456899ea444301870e1d3c721d139c9251c531 (diff) | |
| download | daft-launcher-a1143f3696a0b272018f7eea43ee23a674c618e1.tar.gz daft-launcher-a1143f3696a0b272018f7eea43ee23a674c618e1.zip | |
Add context menu for apps (fav,settings,uninstall)
Diffstat (limited to 'src/components/Clock.tsx')
| -rw-r--r-- | src/components/Clock.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Clock.tsx b/src/components/Clock.tsx index 113201f..619a31b 100644 --- a/src/components/Clock.tsx +++ b/src/components/Clock.tsx @@ -14,7 +14,7 @@ export const Clock: React.FC = () => { const formatter = new Intl.DateTimeFormat('en', { hour: 'numeric', minute: 'numeric', - second: 'numeric', + // second: 'numeric', }); return formatter.format(date); }, [date]); @@ -30,7 +30,7 @@ export const Clock: React.FC = () => { return ( <View className="p-6"> - <Text className="text-3xl font-bold">{timeText}</Text> + <Text className="text-4xl font-bold">{timeText}</Text> <Text className="text-lg">{dateText}</Text> </View> ); |
