File tree 3 files changed +6356
-8261
lines changed
examples/create-react-app-example
3 files changed +6356
-8261
lines changed Original file line number Diff line number Diff line change 3
3
"version" : " 0.1.0" ,
4
4
"private" : true ,
5
5
"dependencies" : {
6
- "@testing-library/jest-dom" : " ^4.2.4 " ,
7
- "@testing-library/react" : " ^9.3.2 " ,
8
- "@testing-library/user-event" : " ^7.1.2 " ,
9
- "react" : " ^16.13.1 " ,
10
- "react-dom" : " ^16.13.1 " ,
11
- "react-scripts" : " 3.4 .1" ,
12
- "socket.io" : " 4 " ,
13
- "socket.io-client" : " 4 "
6
+ "@testing-library/jest-dom" : " ^5.16.5 " ,
7
+ "@testing-library/react" : " ^14.0.0 " ,
8
+ "@testing-library/user-event" : " ^14.4.3 " ,
9
+ "react" : " ^18.2.0 " ,
10
+ "react-dom" : " ^18.2.0 " ,
11
+ "react-scripts" : " ^5.0 .1" ,
12
+ "socket.io" : " ^4.6.1 " ,
13
+ "socket.io-client" : " ^4.6.1 "
14
14
},
15
15
"scripts" : {
16
16
"start" : " react-scripts start" ,
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
- import ReactDOM from 'react-dom' ;
2
+ import { createRoot } from 'react-dom/client ' ;
3
3
import './index.css' ;
4
4
import App from './App' ;
5
5
import * as serviceWorker from './serviceWorker' ;
6
6
7
- ReactDOM . render (
7
+ const container = document . getElementById ( 'root' ) ;
8
+ const root = createRoot ( container )
9
+ root . render (
8
10
< React . StrictMode >
9
11
< App />
10
- </ React . StrictMode > ,
11
- document . getElementById ( 'root' )
12
+ </ React . StrictMode >
12
13
) ;
13
14
14
15
// If you want your app to work offline and load faster, you can change
You can’t perform that action at this time.
0 commit comments