diff options
author | 2021-07-30 00:50:29 -0700 | |
---|---|---|
committer | 2021-07-30 00:50:29 -0700 | |
commit | 7245f90b2dd686acacb9c8ee03f5d8fb05e09aeb (patch) | |
tree | 120d6d093ba609f93f1514fde16c0a3402855336 /demos/css-stress-test/src | |
parent | ba743d776a6a417bdf42755b62a7868b15ebfe73 (diff) | |
download | bun-7245f90b2dd686acacb9c8ee03f5d8fb05e09aeb.tar.gz bun-7245f90b2dd686acacb9c8ee03f5d8fb05e09aeb.tar.zst bun-7245f90b2dd686acacb9c8ee03f5d8fb05e09aeb.zip |
little bit of errors, little bit of bytecode caching. neither finished
Former-commit-id: c774c395136d58330aa7cad7e9fa434bcef7d5c6
Diffstat (limited to 'demos/css-stress-test/src')
-rw-r--r-- | demos/css-stress-test/src/index.tsx | 4 |
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 }; - - |