next.js/packages/next-codemod/transforms/__testfixtures__/next-async-request-api-dynamic-props/route-access-prop-01.input.tsx
route-access-prop-01.input.tsx13 lines250 B
// Fake route handlers should not be transformed
export const GET = function ({ params }: any) {
  call(params.foo)
}

export function POST({ params }: any) {
  call(params.foo)
}

export async function DELETE({ params }: any) {
  call(params.foo)
}
Quest for Codev2.0.0
/
SIGN IN