Replace the hello-world shell with the elevated design system, bilingual screens, recipe/extras data, and the interactive Mein Teller view. Co-authored-by: Cursor <cursoragent@cursor.com>
5 lines
213 B
TypeScript
5 lines
213 B
TypeScript
/** Tiny className joiner — avoids pulling in clsx/tailwind-merge as a dependency. */
|
|
export function cx(...parts: Array<string | false | null | undefined>): string {
|
|
return parts.filter(Boolean).join(" ");
|
|
}
|