10 lines
236 B
Plaintext
10 lines
236 B
Plaintext
import { createFileRoute } from '@tanstack/react-router'
|
|
|
|
export const Route = createFileRoute('/_authenticated/faqs/')({
|
|
component: RouteComponent,
|
|
})
|
|
|
|
function RouteComponent() {
|
|
return <div>Hello "/_authenticated/faqs/"!</div>
|
|
}
|