/* SpeakMind — mount the A/B-selected app. Loads last so SMAppA / SMAppB exist. */
const __V = (window.SM_AB && window.SM_AB.variant) || "a";
document.body.setAttribute("data-variant", __V);
if (window.SM_AB) window.SM_AB.track("variant_view", {});
const __Root = __V === "b" ? window.SMAppB : window.SMAppA;
ReactDOM.createRoot(document.getElementById("root")).render(React.createElement(__Root));
