feat: raw deals dnd between statuses

This commit is contained in:
2025-08-01 10:01:39 +04:00
parent 8af4a908e6
commit 5fe9ea6747
14 changed files with 507 additions and 7 deletions

View File

@ -0,0 +1,12 @@
import { Card } from "@mantine/core";
import { DealSchema } from "@/types/DealSchema";
type Props = {
deal: DealSchema;
};
const DealCard = ({ deal }: Props) => {
return <Card>{deal.name}</Card>;
};
export default DealCard;