Reactが真っ白、俺の頭も真っ白:divのidに翻弄された夜

🔧 index.js
はこうしとけ
const rootElement =
document.getElementById('react-dashboard-widget') ||
document.getElementById('root');
if (rootElement) {
const root = ReactDOM.createRoot(rootElement);
root.render(<App />);
}
これで開発 (localhost:3000
) でも、本番 (iframe.php
経由で読み込まれるWordPress内) でも両方いける。