refactor(miniapp): add rewrite foundation and demo fixtures

This commit is contained in:
2026-03-11 18:41:36 +04:00
parent d40f5e1d84
commit b193f8ddce
19 changed files with 1073 additions and 490 deletions

View File

@@ -0,0 +1,5 @@
import { clsx, type ClassValue } from 'clsx'
export function cn(...inputs: ClassValue[]) {
return clsx(inputs)
}