blob: fe15956ccf5c47e89b172789eb1ed5f80adfd224 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import { View } from "react-native";
import { Link, Stack } from "expo-router";
import BookmarkList from "@/components/bookmarks/BookmarkList";
import { Link as LinkIcon, SquarePen } from "lucide-react-native";
function HeaderRight() {
return (
<View className="flex flex-row">
<Link href="dashboard/add-link" className="mt-2 px-2">
<LinkIcon />
</Link>
<Link href="dashboard/add-note" className="mt-2 px-2">
<SquarePen />
</Link>
</View>
);
}
export default function Home() {
return (
<>
<Stack.Screen
options={{
headerRight: () => <HeaderRight />,
}}
/>
<BookmarkList archived={false} />
</>
);
}
|