mirror of
https://github.com/upscayl/upscayl.git
synced 2025-02-20 20:51:49 +01:00
- Change file names to kebab-caase - Add new useTranslation Hook - Change useLog hook name to useLogger - Update translation hook to provide autocomplete
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;
|