import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import App from './popup' const container = document.getElementById('root') if (container) { createRoot(container).render( ) }