aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/app/dashboard/(tabs)/index.tsx
blob: b2349525799a6276ea348bcb0534788428745880 (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
31
import { Link, Stack } from "expo-router";
import { SquarePen, Link as LinkIcon } from "lucide-react-native";
import { View } from "react-native";

import BookmarkList from "@/components/bookmarks/BookmarkList";

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} />
    </>
  );
}