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