AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
export default async function Page() {
const arr = new Uint8Array(16)
crypto.getRandomValues(arr)
return (
<dl>
<dt>crypto.getRandomValues():</dt>
<dd>{arr.toString()}</dd>
<dt>crypto.randomUUID():</dt>
<dd>{crypto.randomUUID()}</dd>
</dl>
)
}