feat: docs and new migration cli

This commit is contained in:
Bereket Engida
2024-09-02 09:41:45 +03:00
parent 3ac5916da7
commit 7234291718
40 changed files with 2692 additions and 815 deletions

View File

@@ -1,6 +1,6 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
return twMerge(clsx(inputs));
}