// sc-app.jsx — シングルページ描画(window.SC_PAGE で制御) const navigate = (id) => { window.location.href = pageUrl(id); }; function App() { const page = window.SC_PAGE || "home"; const pages = { home: , begin: , course: , voice: , bio: , contact: , policy: , law: , }; return (
); } const root = ReactDOM.createRoot(document.getElementById("root")); root.render();