mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
Use createRoot to enable React18 features
This commit is contained in:
parent
0fb9ea932d
commit
5fda409929
|
@ -1,7 +1,7 @@
|
||||||
import './index.css'
|
import './index.css'
|
||||||
|
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import ReactDOM from 'react-dom/client'
|
import { createRoot } from 'react-dom/client'
|
||||||
import { ErrorBoundary } from 'react-error-boundary';
|
import { ErrorBoundary } from 'react-error-boundary';
|
||||||
import { IntlProvider } from 'react-intl';
|
import { IntlProvider } from 'react-intl';
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ const logError = (error: Error, info: { componentStack: string }) => {
|
||||||
console.log('Component stack: ' + info.componentStack)
|
console.log('Component stack: ' + info.componentStack)
|
||||||
};
|
};
|
||||||
|
|
||||||
ReactDOM.createRoot(document.getElementById('root')!).render(
|
createRoot(document.getElementById('root')!).render(
|
||||||
<React.StrictMode>
|
<React.StrictMode>
|
||||||
<ErrorBoundary
|
<ErrorBoundary
|
||||||
FallbackComponent={ErrorFallback}
|
FallbackComponent={ErrorFallback}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user