From aadfe206f3233032d8742a17c1f21d4750946a41 Mon Sep 17 00:00:00 2001 From: polwex Date: Wed, 16 Jul 2025 14:54:44 +0700 Subject: aaaarggh!!! --- components/Client.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 components/Client.tsx (limited to 'components/Client.tsx') diff --git a/components/Client.tsx b/components/Client.tsx new file mode 100644 index 0000000..17f3216 --- /dev/null +++ b/components/Client.tsx @@ -0,0 +1,21 @@ +"use client"; +import toast, { Toaster } from "react-hot-toast"; + +import "../shim"; +export default function ClientComponent({ children }: any) { + console.log("global", global.Buffer); + console.log("global crypto in client", global.crypto); + console.log((global as any).lmao); + // console.log((global as any).crypto, "global crypto in client"); + // console.log(crypto, "crypto in client"); + // console.log(crypto.randomUUID()); + // console.log(crypto.getRandomValues(new Uint8Array(16))); + // console.log((global as any).Buffer); + return ( + <> + {children} + + + + ); +} -- cgit v1.2.3