aboutsummaryrefslogtreecommitdiff
path: root/demos/css-stress-test/src
diff options
context:
space:
mode:
Diffstat (limited to 'demos/css-stress-test/src')
-rw-r--r--demos/css-stress-test/src/index.tsx2
-rw-r--r--demos/css-stress-test/src/main.tsx6
2 files changed, 4 insertions, 4 deletions
diff --git a/demos/css-stress-test/src/index.tsx b/demos/css-stress-test/src/index.tsx
index 00a6cbb88..4c288c3cc 100644
--- a/demos/css-stress-test/src/index.tsx
+++ b/demos/css-stress-test/src/index.tsx
@@ -7,7 +7,7 @@ const Base = ({}) => {
typeof location !== "undefined"
? decodeURIComponent(location.search.substring(1))
: null;
- return <Main productName={name || "Bundler"} />;
+ return <Main productName={name || "asdasdasdasdasdasd"} />;
};
function startReact() {
diff --git a/demos/css-stress-test/src/main.tsx b/demos/css-stress-test/src/main.tsx
index 691efcf30..556f3d3b7 100644
--- a/demos/css-stress-test/src/main.tsx
+++ b/demos/css-stress-test/src/main.tsx
@@ -2,7 +2,7 @@ export const Main = ({ productName }) => {
return (
<>
<header>
- <div className="Title">CSS HMR Stress Test</div>
+ <div className="Title">CSS HMR Stress Test!</div>
<p className="Description">
This page visually tests how quickly a bundler can update CSS over Hot
Module Reloading.
@@ -55,10 +55,10 @@ export const Main = ({ productName }) => {
<div className="Bundler-container">
<div className="Bundler">{productName}</div>
<div className="Bundler-updateRate">
- Saving a css file every
+ {/* This should loose all the styles
<span className="highlight">
<span className="interval"></span>ms
- </span>
+ </span> */}
</div>
</div>
</footer>