style: add prettier

Summary:

Test Plan:
This commit is contained in:
2024-05-14 21:59:38 -04:00
parent f78ad2d2dd
commit 29345a7bd1
8 changed files with 34 additions and 18 deletions

View File

@@ -1,9 +1,9 @@
import { Hono } from 'hono'
import { Hono } from "hono";
const app = new Hono()
const app = new Hono();
app.get('/', (c) => {
return c.text('Hello Hono!')
})
app.get("/", (c) => {
return c.text("Hello Hono!");
});
export default app
export default app;