import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; /** * Entry point for the Digital QR React application. * Renders the root App component into the DOM. */ const rootElement = document.getElementById('root'); if (rootElement) { const root = ReactDOM.createRoot(rootElement); root.render( ); }