According to MDM (https://developer.mozilla.org/en-US/docs/Web/API/Crypto/randomUUID) Most modern Browsers support the javascript native crypto api, which supports the former node-js crypto standard.
According to this article in plain js I may create an uuid via
crypto.randomeUUID()
Is there any way to use this interface in react? Since crypto seems to refere to a completely different object in react.
ps. I am aware of the existence of the UUID package, and know that its a common way to generate UUIDs I am just curious.