feat: add hello world to home page

This commit is contained in:
Maze Winther
2026-05-28 00:51:29 +02:00
parent a5888e2087
commit b315020416
+5 -1
View File
@@ -3,5 +3,9 @@ import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/')({ component: Home })
function Home() {
return null
return (
<div>
<p>hello world!</p>
</div>
)
}