next.js/packages/next-codemod/transforms/__testfixtures__/next-async-request-api-dynamic-apis/custom-routes-access-api-prop-01.output.tsx
custom-routes-access-api-prop-01.output.tsx14 lines204 B
import { headers } from 'next/headers'

export const GET = async function() {
  await headers()
}

export async function POST() {
  await headers()
}

export async function DELETE() {
  await headers()
}
Quest for Codev2.0.0
/
SIGN IN