1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-20 20:51:49 +01:00
upscayl/renderer/components/main-content/mac-titlebar-drag-region.tsx
Nayam Amarshe b39d23c2ff Refactor and Update Code
- Change file names to kebab-caase
- Add new useTranslation Hook
- Change useLog hook name to useLogger
- Update translation hook to provide autocomplete
2024-09-25 07:32:56 +05:30

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;