Files
netbird/client/ui-wails/frontend/src/layouts/MainRightSide.tsx
2026-05-07 16:47:52 +02:00

21 lines
478 B
TypeScript

import { ReactNode } from "react";
import { cn } from "@/lib/cn.ts";
type Props = {
children: ReactNode;
};
export const MainRightSide = ({ children }: Props) => {
return (
<div
className={cn(
"wails-no-draggable",
"bg-nb-gray-935 border border-nb-gray-910",
"flex-1 min-h-0 min-w-0 flex flex-col rounded-xl rounded-br-2xl ",
)}
>
{children}
</div>
);
};