SAMEER KHAN

Results 1 issues of SAMEER KHAN

This PR updates the example in `single-file-example.html` to use React 18+ `createRoot` API instead of the deprecated `ReactDOM.render`. - Replaced: ReactDOM.render(Hello, world!, document.getElementById('root')); - With: const root = ReactDOM.createRoot(document.getElementById('root')); root.render(Hello,...

CLA Signed