next.js/packages/next-codemod/transforms/__testfixtures__/next-async-request-api-dynamic-props/route-access-props-02.input.tsx
route-access-props-02.input.tsx11 lines218 B
export function GET(req, { params }: any) {
  call(params.foo)
}

export async function DELETE(req, { params }: any) {
  call(params.foo)
}

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