diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-13 12:13:38 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-13 12:34:07 +0000 |
| commit | 408984d9325f12937ac5747505370dec26e46d3f (patch) | |
| tree | f8a0f047776259ba24c7058aaf4efffc856ad978 /packages/mobile/app/dashboard/(tabs)/index.tsx | |
| parent | a91ebf1353432d8dced29049b26df5eea7ee39d9 (diff) | |
| download | karakeep-408984d9325f12937ac5747505370dec26e46d3f.tar.zst | |
mobile: Add borders and padding to the cards
Diffstat (limited to '')
| -rw-r--r-- | packages/mobile/app/dashboard/(tabs)/index.tsx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/packages/mobile/app/dashboard/(tabs)/index.tsx b/packages/mobile/app/dashboard/(tabs)/index.tsx index 28fa39de..07516f3b 100644 --- a/packages/mobile/app/dashboard/(tabs)/index.tsx +++ b/packages/mobile/app/dashboard/(tabs)/index.tsx @@ -1,11 +1,5 @@ -import { View } from "react-native"; - import BookmarkList from "@/components/bookmarks/BookmarkList"; export default function Home() { - return ( - <View> - <BookmarkList archived={false} /> - </View> - ); + return <BookmarkList archived={false} />; } |
