A tool for people curious about the React Server Components protocol rscexplorer.dev/
rsc react
at main 8 lines 253 B view raw
1import "../shared/webpack-shim.ts"; 2 3import { createRoot } from "react-dom/client"; 4import { EmbedApp } from "./ui/EmbedApp.tsx"; 5 6const container = document.getElementById("embed-root")!; 7const root = createRoot(container!); 8root.render(<EmbedApp />);