blob: c02e6b8566ddad3e2cb70c6955a4172053ccc3fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import React from "react";
import Bookmarks from "@/components/dashboard/bookmarks/Bookmarks";
import GlobalActions from "@/components/dashboard/GlobalActions";
import { SearchInput } from "@/components/dashboard/search/SearchInput";
export default async function BookmarksPage() {
return (
<div>
<div className="flex gap-2">
<SearchInput />
<GlobalActions />
</div>
<div className="my-4">
<Bookmarks query={{ archived: false }} showEditorCard={true} />
</div>
</div>
);
}
|