mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
11 lines
307 B
TypeScript
11 lines
307 B
TypeScript
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
type Data = {
|
|
name: string;
|
|
};
|
|
|
|
export default function handler(req: NextApiRequest, res: NextApiResponse<Data>) {
|
|
res.status(200).json({ name: "John Doe" });
|
|
}
|