import React from 'react'; import { createRoot } from 'react-dom/client'; import App from './App.tsx'; console.log("Rádio 97WEB: Iniciando aplicação unificada..."); const rootElement = document.getElementById('root'); if (rootElement) { const root = createRoot(rootElement); root.render( ); }