Skip to content

Commit a4e1114

Browse files
author
Sivcan Singh
committed
Added support for concurrent mode vs sync mode, and added react-cache support in concurrent mode
1 parent d13520f commit a4e1114

29 files changed

+15155
-218
lines changed

package-lock.json

+13,373
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"react": "^16.12.0",
7-
"react-dom": "^16.12.0",
8-
"react-scripts": "3.2.0"
6+
"node-sass": "^4.13.0",
7+
"react": "0.0.0-experimental-b53ea6ca0",
8+
"react-cache": "^2.0.0-alpha.1",
9+
"react-dom": "0.0.0-experimental-b53ea6ca0",
10+
"react-scripts": "3.2.0",
11+
"scheduler": "^0.18.0"
912
},
1013
"scripts": {
1114
"start": "react-scripts start",

src/App.css

-22
This file was deleted.

src/App.js

-26
This file was deleted.

src/App.scss

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
@import './index.scss';
2+
3+
.App {
4+
text-align: center;
5+
display: flex;
6+
flex-direction: column;
7+
align-items: center;
8+
9+
&:first-child {
10+
margin-right: 80px;
11+
}
12+
}
13+
14+
.App-logo {
15+
height: 10vmin;
16+
user-select: none;
17+
}
18+
19+
.App-header {
20+
background-color: #282c34;
21+
display: flex;
22+
flex-direction: column;
23+
align-items: center;
24+
justify-content: center;
25+
font-size: calc(10px + 2vmin);
26+
color: #FFFFFF;
27+
padding-top: 32px;
28+
margin-bottom: 16px;
29+
}
30+
31+
.App-container {
32+
display: flex;
33+
align-items: center;
34+
justify-content: center;
35+
}
36+
37+
.App-title {
38+
font-family: "TrajanPro-Bold";
39+
color: #FFFFFF;
40+
font-size: 18px;
41+
}
42+
43+
.App-link {
44+
color: #09d3ac;
45+
}

src/App.test.js

-9
This file was deleted.

src/assets/logo.svg

+101
Loading

0 commit comments

Comments
 (0)