feat: add hello world to home page
This commit is contained in:
parent
a5888e2087
commit
b315020416
|
|
@ -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>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue