mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
8 lines
191 B
TypeScript
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" />
|
|
)
|
|
}
|