mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-16 13:49:58 +00:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
export default function PlaceholderHeader() {
|
|
return (
|
|
<div
|
|
className="h-[38px] shrink-0 cursor-default"
|
|
style={{ "--wails-draggable": "drag" } as React.CSSProperties}
|
|
/>
|
|
);
|
|
}
|