diff options
Diffstat (limited to 'bench/react-hello-world/react-hello-world.jsx')
-rw-r--r-- | bench/react-hello-world/react-hello-world.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/react-hello-world/react-hello-world.jsx b/bench/react-hello-world/react-hello-world.jsx index 69dd43e93..9cb1d4165 100644 --- a/bench/react-hello-world/react-hello-world.jsx +++ b/bench/react-hello-world/react-hello-world.jsx @@ -24,7 +24,7 @@ const port = Number(process.env.PORT || 3001); Bun.serve({ port, async fetch(req) { - return new Response(await renderToReadableStream(<App />)); + return new Response(await renderToReadableStream(<App />), headers); }, }); |