supermemory/apps/desktop/components/titlebar.tsx
2026-06-23 22:57:44 -07:00

8 lines
191 B
TypeScript

"use client"
// Invisible drag strip for the frameless main window.
export function Titlebar() {
return (
<header data-tauri-drag-region className="h-2.5 shrink-0 bg-transparent" />
)
}