lifetracker/apps/web/components/dashboard/GlobalActions.tsx

12 lines
237 B
TypeScript

"use client";
import ChangeLayout from "@/components/dashboard/ChangeLayout";
export default function GlobalActions() {
return (
<div className="flex min-w-max flex-wrap overflow-hidden">
<ChangeLayout />
</div>
);
}