aboutsummaryrefslogtreecommitdiff
path: root/test/bundler/integration/react/hydrate.jsx
blob: fa3b93cb9c4c8c1579c646929db0b932035ee2be (plain) (blame)
1
2
3
4
5
6
import { hydrateRoot } from "react-dom/client";
import App from "./App";

hydrateRoot(document.getElementById("root"), <App />);

globalThis.__TEST__ = true;