In React 19 (at least) ES modules are provided. Now you can simply do:
import React from "https://esm.sh/react" import ReactDOM from "https://esm.sh/react-dom/client"
I recently did something related and explained my solution on this blog post.