react-server675fbba4
react-servertreemainexamplesreact-queryappapiGET.comments.jsx
examples/react-query/app/api/GET.comments.jsxjsx227 B88d482b3
import comments from "../../data/comments.json";

export default async function GET() {
  return new Response(JSON.stringify(comments), {
    status: 200,
    headers: {
      "Content-Type": "application/json",
    },
  });
}