AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
const list = [1, 2, 3]
export default function Page() {
return (
<div>
{list.map((item, index) => (
<span>{item}</span>
))}
</div>
)
}