chore(examples): replace uuid dependency with crypto.randomUUID (#77901)
Starting from Node.js v14.17.0 and v15.6.0, we can use Node.js's
`randomUUID` function in the crypto module to generate version 4 UUID.
Since Next.js requires Node 18 or newer, we can replace `uuid`
dependency with `crypto.randomUUID`.
Reference:
https://nodejs.org/docs/latest-v18.x/api/crypto.html#cryptorandomuuidoptions
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
Co-authored-by: Jiwon Choi <devjiwonchoi@gmail.com>