mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
import { createFileRoute } from "@tanstack/react-router"
|
|
import { json } from "@tanstack/react-start"
|
|
|
|
export const Route = createFileRoute("/demo/api/names")({
|
|
server: {
|
|
handlers: {
|
|
GET: () => json(["Alice", "Bob", "Charlie"]),
|
|
},
|
|
},
|
|
})
|