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
1 changed files with 5 additions and 1 deletions

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>
)
}