aboutsummaryrefslogtreecommitdiff
path: root/bench/hot-module-reloading/css-stress-test/src/main.tsx
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-10-07 21:27:47 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-10-07 21:27:47 -0700
commitae7b91efe2076254d66d608052f4729fd34b3546 (patch)
tree1bc8f86ca8997c4801839f38326e7b3993efe651 /bench/hot-module-reloading/css-stress-test/src/main.tsx
parent6d9ccd9b8edb149aee957b3e6c7668cc45ce7664 (diff)
downloadbun-jarred/bench.tar.gz
bun-jarred/bench.tar.zst
bun-jarred/bench.zip
Add CSS HMR benchmarkjarred/bench
Diffstat (limited to '')
-rw-r--r--bench/hot-module-reloading/css-stress-test/src/main.tsx (renamed from examples/css-stress-test/src/main.tsx)13
1 files changed, 5 insertions, 8 deletions
diff --git a/examples/css-stress-test/src/main.tsx b/bench/hot-module-reloading/css-stress-test/src/main.tsx
index 556f3d3b7..3b67cd111 100644
--- a/examples/css-stress-test/src/main.tsx
+++ b/bench/hot-module-reloading/css-stress-test/src/main.tsx
@@ -1,17 +1,17 @@
-export const Main = ({ productName }) => {
+export const Main = ({ productName, cssInJS }) => {
return (
<>
<header>
<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.
+ This page visually tests how quickly a bundler can update{" "}
+ {cssInJS ? "CSS-in-JS" : "CSS"} over Hot Module Reloading.
</p>
</header>
<main className="main">
<section className="ProgressSection">
<p className="Subtitle">
- <span className="Subtitle-part">
+ <span className="Subtitle-part ran">
Ran: <span className="timer"></span>
</span>
</p>
@@ -55,10 +55,7 @@ export const Main = ({ productName }) => {
<div className="Bundler-container">
<div className="Bundler">{productName}</div>
<div className="Bundler-updateRate">
- {/* This should loose all the styles
- <span className="highlight">
- <span className="interval"></span>ms
- </span> */}
+ {cssInJS ? "CSS-in-JS framework: " + cssInJS : ""}
</div>
</div>
</footer>