Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
TwanAPI
/
123
like
0
Build error
App
Files
Files
Community
main
123
/
src
/
user
/
FileCard.tsx
Twan07
Create src/user/FileCard.tsx
e7e4f4a
verified
14 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
156 Bytes
export
default
function
FileCard
(
{ name }: { name:
string
}
) {
return
(
<
div
className
=
"p-3 bg-zinc-900 rounded"
>
📄 {name}
</
div
>
);
}