mirror of
https://github.com/upscayl/upscayl.git
synced 2024-12-20 11:26:00 +01:00
8 lines
207 B
TypeScript
8 lines
207 B
TypeScript
|
const MacTitlebarDragRegion = () => {
|
||
|
return window.electron.platform === "mac" ? (
|
||
|
<div className="mac-titlebar absolute top-0 h-8 w-full"></div>
|
||
|
) : null;
|
||
|
};
|
||
|
|
||
|
export default MacTitlebarDragRegion;
|