import {StrictMode} from 'react';
import {createRoot} from 'react-dom/client';
import App from './App.tsx';
import './index.css';

console.log('>>> [GATEWAY] Main Entry Point (main.tsx) Executing');

const rootElement = document.getElementById('root');
if (!rootElement) {
  console.error('>>> [GATEWAY] Root element #root not found!');
} else {
  createRoot(rootElement).render(
    <StrictMode>
      <App />
    </StrictMode>,
  );
}
