aboutsummaryrefslogtreecommitdiff
path: root/test/bundler/integration/react/index.jsx
blob: 8ee12339a91db866447fe5c53978b82ada7c694c (plain) (blame)
1
2
3
4
5
6
import { createRoot } from "react-dom/client";
import App from "./App";
const root = createRoot(document.getElementById("root"));
root.render(<App />);

globalThis.__TEST__ = true;