diff --git a/apps/web/src/routes/index.tsx b/apps/web/src/routes/index.tsx index 12735992..5bcc336d 100644 --- a/apps/web/src/routes/index.tsx +++ b/apps/web/src/routes/index.tsx @@ -1,11 +1,11 @@ -import { createFileRoute } from '@tanstack/react-router' +import { createFileRoute } from "@tanstack/react-router"; -export const Route = createFileRoute('/')({ component: Home }) +export const Route = createFileRoute("/")({ component: Home }); function Home() { - return ( -
-

hello world!

-
- ) + return ( +
+

hello world!

+
+ ); }