Sample App React 2.18.0 crashing

Hi @dkononov.zp
Thanks for reaching out to us!
I am happy to help here!
I noticed this behavior too with our sample app found here:
GitHub - zoom/meetingsdk-react-sample: Use the Zoom Meeting SDK in React

It looks like we do not support React 18 with our Web Meeting Sdk 2.18, and we are currently working on this issue.

In the meantime, what I did to fix this was:

  1. Pull these dependencies via CDN
 <!-- React library -->
    <script src="https://unpkg.com/react@16/umd/react.development.js"></script>

    <!-- React DOM library -->
    <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>

    <script src="https://source.zoom.us/2.18.0/lib/vendor/react-dom.min.js"></script>
    <script src="https://source.zoom.us/2.18.0/lib/vendor/redux.min.js"></script>
    <script src="https://source.zoom.us/2.18.0/lib/vendor/redux-thunk.min.js"></script>
    <script src="https://source.zoom.us/2.18.0/lib/vendor/lodash.min.js"></script>

And got rid of my dependencies in the package.json but left these:

    "@zoomus/websdk": "^2.18.0",
    "web-vitals": "^3.5.0",
    "react-scripts": "^5.0.1"

After doing this, I deleted my package.json and node_modules and ran the app again and that solved my issue.
Could you please try something like this and let me know if this helps
Cheers,
Elisa