blob: 47392ad5313b52d10054944f94d7fa8ef2b5af69 (
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 ChangeLayout from "@/components/dashboard/ChangeLayout";
import { SearchInput } from "@/components/dashboard/search/SearchInput";
export default async function BookmarksPage() {
return (
<div>
<div className="flex gap-2">
<SearchInput />
<ChangeLayout />
</div>
<div className="my-4 flex-1">
<Bookmarks query={{ archived: false }} showEditorCard={true} />
</div>
</div>
);
}
|