15 lines
338 B
TypeScript
15 lines
338 B
TypeScript
import { createRoot } from 'react-dom/client';
|
|
import { StrictMode } from 'react';
|
|
import App from './app/App';
|
|
import './index.css';
|
|
|
|
const rootElement = document.getElementById('root');
|
|
|
|
if (!rootElement) throw new Error('Failed to find the root element');
|
|
|
|
createRoot(rootElement).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>
|
|
);
|