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