diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-13 04:27:21 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-13 04:29:52 +0000 |
| commit | 3a4b858c03bf775e63521f8f0e0a5e9e304dbceb (patch) | |
| tree | 1473ade5bdec7e5036a13c0c96342020610b5abb /packages/mobile/app/dashboard/archive.tsx | |
| parent | 61e970bb8c75c6edb279447be3f7ca8a00bd607d (diff) | |
| download | karakeep-3a4b858c03bf775e63521f8f0e0a5e9e304dbceb.tar.zst | |
mobile: Add support for viewing lists
Diffstat (limited to 'packages/mobile/app/dashboard/archive.tsx')
| -rw-r--r-- | packages/mobile/app/dashboard/archive.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/mobile/app/dashboard/archive.tsx b/packages/mobile/app/dashboard/archive.tsx new file mode 100644 index 00000000..d75cfe22 --- /dev/null +++ b/packages/mobile/app/dashboard/archive.tsx @@ -0,0 +1,11 @@ +import { View } from "react-native"; + +import BookmarkList from "@/components/bookmarks/BookmarkList"; + +export default function Archive() { + return ( + <View> + <BookmarkList archived /> + </View> + ); +} |
