import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
import { GlobalErrorBoundary } from './components/global/ErrorBoundary'
console.log('[KEYKODERS] production JS loaded')
try {
console.log('[KEYKODERS] React boot starting')
const rootElement = document.getElementById('root')
if (!rootElement) {
throw new Error('Root element #root was not found')
}
createRoot(rootElement).render(
${String(error)}