style(web): format index route

This commit is contained in:
Maze Winther 2026-07-24 14:15:46 +02:00
parent 0f3ea7ef7f
commit 4d8c49ed07
1 changed files with 7 additions and 7 deletions

View File

@ -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 (
<div>
<p>hello world!</p>
</div>
)
return (
<div>
<p>hello world!</p>
</div>
);
}