mirror of
https://github.com/openai/harmony.git
synced 2025-08-24 22:17:08 -04:00
Fix shadcn utils file in js demo
This commit is contained in:
parent
f6179119ca
commit
81598edde0
2 changed files with 9 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -70,3 +70,6 @@ docs/_build/
|
||||||
|
|
||||||
# Pyenv
|
# Pyenv
|
||||||
.python-version
|
.python-version
|
||||||
|
|
||||||
|
# Avoid ignoring shadcn utils
|
||||||
|
!demo/harmony-demo/src/lib
|
||||||
|
|
6
demo/harmony-demo/src/lib/utils.ts
Normal file
6
demo/harmony-demo/src/lib/utils.ts
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
import { clsx, type ClassValue } from "clsx"
|
||||||
|
import { twMerge } from "tailwind-merge"
|
||||||
|
|
||||||
|
export function cn(...inputs: ClassValue[]) {
|
||||||
|
return twMerge(clsx(inputs))
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue