diff options
author | 2021-11-21 17:30:50 -0800 | |
---|---|---|
committer | 2021-11-21 17:30:50 -0800 | |
commit | fd80d0a22dd123e00c9f4480c4b22ffe50d9d092 (patch) | |
tree | 820dae2e982516649d5a0c3c3cde40e68141e7c6 /bench/hot-module-reloading/css-stress-test/pages/css-in-js.tsx | |
parent | 86743ab361469febc114b68484ce4daf240e73d1 (diff) | |
download | bun-fd80d0a22dd123e00c9f4480c4b22ffe50d9d092.tar.gz bun-fd80d0a22dd123e00c9f4480c4b22ffe50d9d092.tar.zst bun-fd80d0a22dd123e00c9f4480c4b22ffe50d9d092.zip |
Fix loading CSS benchmarkbun-v0.0.51
Diffstat (limited to 'bench/hot-module-reloading/css-stress-test/pages/css-in-js.tsx')
-rw-r--r-- | bench/hot-module-reloading/css-stress-test/pages/css-in-js.tsx | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/bench/hot-module-reloading/css-stress-test/pages/css-in-js.tsx b/bench/hot-module-reloading/css-stress-test/pages/css-in-js.tsx deleted file mode 100644 index f2fac3f08..000000000 --- a/bench/hot-module-reloading/css-stress-test/pages/css-in-js.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import { CSSInJSStyles } from "src/css-in-js-styles"; -import { Main } from "src/main"; -export function CSSInJS() { - return ( - <> - <CSSInJSStyles /> - <Main - productName={ - typeof location !== "undefined" - ? decodeURIComponent(location.search.substring(1)) - : "" - } - cssInJS="Emotion" - /> - </> - ); -} - -export default CSSInJS; |