2024-05-02 18:53:53 +02:00
|
|
|
import { createFileRoute } from '@tanstack/react-router'
|
2024-05-01 19:40:53 +02:00
|
|
|
|
2024-05-02 18:53:53 +02:00
|
|
|
export const Route = createFileRoute('/about')({
|
2024-05-02 19:01:49 +02:00
|
|
|
component: () => <div>Hello /about!</div>,
|
|
|
|
|
})
|