feat: client tab in deal editor

This commit is contained in:
2025-10-05 12:05:23 +04:00
parent d14920df7d
commit 0fcf086861
21 changed files with 511 additions and 35 deletions

View File

@ -0,0 +1,13 @@
import { FC, PropsWithChildren } from "react";
import { Flex } from "@mantine/core";
const FormFlexRow: FC<PropsWithChildren> = ({ children }) => (
<Flex
gap={"md"}
w={"100%"}
direction={{ base: "column", sm: "row" }}>
{children}
</Flex>
);
export default FormFlexRow;