aboutsummaryrefslogtreecommitdiff
path: root/demos/css-stress-test/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'demos/css-stress-test/src/index.tsx')
-rw-r--r--demos/css-stress-test/src/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/css-stress-test/src/index.tsx b/demos/css-stress-test/src/index.tsx
index c9ec51a7e..ce6f9a930 100644
--- a/demos/css-stress-test/src/index.tsx
+++ b/demos/css-stress-test/src/index.tsx
@@ -1,6 +1,7 @@
import { Main } from "./main";
import classNames from "classnames";
import * as ReactDOM from "react-dom";
+import * as ReactDOMServer from "react-dom/server.browser";
const Base = ({}) => {
const name =
@@ -22,9 +23,8 @@ if (typeof window !== "undefined") {
startReact();
} else {
+ console.log("test");
console.log(ReactDOMServer.renderToString(<Base />));
}
export { Base };
-
-