aboutsummaryrefslogtreecommitdiff
path: root/bench/react-hello-world/react-hello-world.deno.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'bench/react-hello-world/react-hello-world.deno.jsx')
-rw-r--r--bench/react-hello-world/react-hello-world.deno.jsx4
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 },
);