cfahlgren1's picture
cfahlgren1 HF Staff
Initial commit from Create Next App
5e26aa6
raw
history blame
312 Bytes
// 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" });
}