diff options
Diffstat (limited to 'bench/react-hello-world/react-hello-world.deno.jsx')
-rw-r--r-- | bench/react-hello-world/react-hello-world.deno.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/react-hello-world/react-hello-world.deno.jsx b/bench/react-hello-world/react-hello-world.deno.jsx index fabbfcfcb..0bea2574a 100644 --- a/bench/react-hello-world/react-hello-world.deno.jsx +++ b/bench/react-hello-world/react-hello-world.deno.jsx @@ -18,8 +18,8 @@ const headers = { }; Deno.serve( - async (req) => { + async req => { return new Response(await renderToReadableStream(<App />), headers); }, - { port: 8080 } + { port: 8080 }, ); |