generated from Labyricorn/labyricorn-project-template
8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
const isWindows = navigator.userAgent.includes('Windows');
|
|
|
|
export function TitleBarDragRegion() {
|
|
if (isWindows) return null;
|
|
|
|
return <div data-tauri-drag-region className="fixed top-0 left-0 right-0 h-12 z-[9999]" />;
|
|
}
|