File tree Expand file tree Collapse file tree 4 files changed +5176
-3796
lines changed Expand file tree Collapse file tree 4 files changed +5176
-3796
lines changed Original file line number Diff line number Diff line change 4
4
/node_modules
5
5
/.pnp
6
6
.pnp.js
7
+ yarn.lock
7
8
8
9
# testing
9
10
/coverage
Original file line number Diff line number Diff line change 3
3
"version" : " 1.0.0" ,
4
4
"private" : true ,
5
5
"dependencies" : {
6
- "@dhx/trial-scheduler" : " ^7.0 .3" ,
6
+ "@dhx/trial-scheduler" : " ^7.2 .3" ,
7
7
"@testing-library/jest-dom" : " ^5.16.1" ,
8
8
"@testing-library/react" : " ^12.1.2" ,
9
9
"@testing-library/user-event" : " ^13.5.0" ,
10
- "react" : " ^17 .0.2 " ,
11
- "react-dom" : " ^17 .0.2 " ,
12
- "react-scripts" : " 5.0.0 "
10
+ "react" : " ^19 .0.0 " ,
11
+ "react-dom" : " ^19 .0.0 " ,
12
+ "react-scripts" : " 5.0.1 "
13
13
},
14
14
"scripts" : {
15
15
"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 ( < App /> , document . getElementById ( 'root' ) ) ;
7
+ const root = createRoot ( document . getElementById ( "root" ) ) ;
8
+
9
+ root . render ( < App /> )
10
+
8
11
9
12
// If you want your app to work offline and load faster, you can change
10
13
// unregister() to register() below. Note this comes with some pitfalls.
You can’t perform that action at this time.
0 commit comments