her / ui /src /main.jsx
geekwrestler's picture
Squash history (purge pre-scrub demo session blobs)
5f43c7d
import React from "react";
import { createRoot } from "react-dom/client";
import App from "./App.jsx";
import { installExitClear } from "./client.js";
// On the hosted Space, best-effort wipe this browser's uploaded sessions on tab-close
// (the 24h server sweeper is the hard guarantee). No-op effect for the local product.
installExitClear();
createRoot(document.getElementById("root")).render(
<React.StrictMode>
<App />
</React.StrictMode>
);