blob: e09f92a2092f8ecea9e971f6bd756d919a2a0d03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
"use client";
import BulkBookmarksAction from "@/components/dashboard/BulkBookmarksAction";
import ChangeLayout from "@/components/dashboard/ChangeLayout";
export default function GlobalActions() {
return (
<div className="flex min-w-max flex-wrap overflow-hidden rounded-md border bg-background">
<ChangeLayout />
<BulkBookmarksAction />
</div>
);
}
|