aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/GlobalActions.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components/dashboard/GlobalActions.tsx')
-rw-r--r--apps/web/components/dashboard/GlobalActions.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/web/components/dashboard/GlobalActions.tsx b/apps/web/components/dashboard/GlobalActions.tsx
new file mode 100644
index 00000000..e09f92a2
--- /dev/null
+++ b/apps/web/components/dashboard/GlobalActions.tsx
@@ -0,0 +1,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>
+ );
+}