File tree Expand file tree Collapse file tree 3 files changed +2898
-5482
lines changed Expand file tree Collapse file tree 3 files changed +2898
-5482
lines changed Original file line number Diff line number Diff line change 5
5
"dependencies" : {
6
6
"axios" : " ^0.18.0" ,
7
7
"moment" : " ^2.23.0" ,
8
- "react" : " ^16.9 .0" ,
9
- "react-dom" : " ^16.7 .0" ,
8
+ "react" : " ^18.2 .0" ,
9
+ "react-dom" : " ^18.2 .0" ,
10
10
"react-ga" : " ^2.5.7" ,
11
- "react-phone-number-input" : " ^2.3.21 " ,
11
+ "react-phone-number-input" : " ^3.2.11 " ,
12
12
"react-redux" : " ^6.0.0" ,
13
13
"react-router-dom" : " ^5.0.1" ,
14
- "react-scripts" : " 4 .0.3 " ,
14
+ "react-scripts" : " 5 .0.1 " ,
15
15
"reactstrap" : " ^8.0.1" ,
16
16
"redux" : " ^4.0.4" ,
17
17
"redux-thunk" : " ^2.3.0"
Original file line number Diff line number Diff line change 1
1
import React from 'react'
2
- import ReactDOM from 'react-dom'
3
- import * as Tracking from './Tracking/index'
2
+ import { createRoot } from 'react-dom/client '
3
+
4
4
import App from './App'
5
+ import * as Tracking from './Tracking/index'
5
6
6
7
// Google Analytics
7
8
Tracking . initialise ( )
8
9
9
- ReactDOM . render ( < App /> , document . getElementById ( 'root' ) )
10
+ createRoot ( document . getElementById ( 'root' ) ) . render ( < App /> )
You can’t perform that action at this time.
0 commit comments