diff options
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; |