aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/app/dashboard/archive/page.tsx
blob: 81eea57c8447070dc40ec26a3c5b371e15f4ebbb (plain) (blame)
1
2
3
4
5
6
7
8
9
import Bookmarks from "../bookmarks/components/Bookmarks";

export default async function ArchivedBookmarkPage() {
  return (
    <div className="continer mt-4">
      <Bookmarks title="🗄️ Archive" archived={true} showDivider={true} />
    </div>
  );
}