2026-05-09 00:42:26 +02:00
|
|
|
import { createFileRoute } from '@tanstack/react-router'
|
|
|
|
|
|
|
|
|
|
export const Route = createFileRoute('/')({ component: Home })
|
|
|
|
|
|
|
|
|
|
function Home() {
|
2026-05-28 00:51:29 +02:00
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<p>hello world!</p>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
2026-05-09 00:42:26 +02:00
|
|
|
}
|