| commit | 5f2f100451baee800b04a0871f6c268ed0dc7daa | [log] [tgz] |
|---|---|---|
| author | gio <gio@v1.dodo.cloud> | Thu Mar 20 18:38:48 2025 +0400 |
| committer | gio <gio@v1.dodo.cloud> | Thu Mar 27 14:49:06 2025 +0400 |
| tree | 2da0211831c380f04989725167520f96fe24d9d4 | |
| parent | 9c43d0c4d9840f1d914313064f02f71c9de76f4a [diff] [blame] |
Canvas: build application infrastructure with drag and drop Change-Id: I5cfd12e67794f3376c5c025af29470d52d77cf16
diff --git a/apps/canvas/src/lib/utils.ts b/apps/canvas/src/lib/utils.ts new file mode 100644 index 0000000..bd0c391 --- /dev/null +++ b/apps/canvas/src/lib/utils.ts
@@ -0,0 +1,6 @@ +import { clsx, type ClassValue } from "clsx" +import { twMerge } from "tailwind-merge" + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)) +}