tmp/webapp-docs/src/main.js

/**
 * The SPA entry point — mounts `<App />` into `#root`.
 * @module web-app/main
 */
import React from "react";
import { createRoot } from "react-dom/client";
import App from "./App.jsx";
import "./styles.css";
import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
createRoot(document.getElementById("root")).render(/*#__PURE__*/_jsxDEV(React.StrictMode, {
  children: /*#__PURE__*/_jsxDEV(App, {}, void 0, false)
}, void 0, false));