18 lines
420 B
TypeScript
18 lines
420 B
TypeScript
import { StrictMode } from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import App from './App';
|
|
import ErrorBoundary from './components/ErrorBoundary';
|
|
|
|
const container = document.getElementById('root');
|
|
if (!container) {
|
|
throw new Error('Root element not found');
|
|
}
|
|
|
|
const root = createRoot(container);
|
|
root.render(
|
|
<StrictMode>
|
|
<ErrorBoundary>
|
|
<App />
|
|
</ErrorBoundary>
|
|
</StrictMode>
|
|
);
|