()
| 10 | import {createRoot} from 'react-dom/client'; |
| 11 | |
| 12 | function createContainer() { |
| 13 | const container = document.createElement('div'); |
| 14 | |
| 15 | ((document.body: any): HTMLBodyElement).appendChild(container); |
| 16 | |
| 17 | return container; |
| 18 | } |
| 19 | |
| 20 | function EffectWithState() { |
| 21 | const [didMount, setDidMount] = useState(0); |