Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NERDDISCO
/
LeRobot.js
like
3
Running
App
Files
Files
Community
130ae50
LeRobot.js
/
src
/
demo
/
lib
/
utils.ts
NERDDISCO
feat: added react / tailwind ui
0d9f1af
28 days ago
raw
Copy download link
history
blame
Safe
169 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}