New react application with minimal zoom integration raise errors

I created an empty react web project, added the zoom SDK (tried both ways - CDN and local) and run these 3 lines of code, nothing else, no react code yet, no zoom code yet, nothing. Only these 3 rows:
import { ZoomMtg } from “@zoomus/websdk”;
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();

And I get the following error message in chrome console:
VM61 webim.min.js:1 Uncaught SyntaxError: Unexpected token ‘<’
VM62 6568_js_media.min.js:1 Uncaught SyntaxError: Unexpected token ‘<’

abc

If I ignore this error and try to join a meeting I get empty black screen.

Hey @meir.bond,

When it comes to using React with the Web SDK, I would make sure to closely follow our Sample React App which was created using the create-react-app command.

Looking at that implementation, you might be missing a line to call setZoomJSLib:

Let me know if that helps.

Thanks,
Max

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.