next.js/test/development/app-dir/source-mapping/app/actions1.ts
actions1.ts22 lines454 B
'use server'

export const foo = async () => {
  return 'exported exported arrow function expression'
}

export async function bar() {
  return 'exported named function declaration'
}

export const baz = async function () {
  return 'exported anonymous function expression'
}

export const qux = async function quux() {
  return 'exported named function expression'
}

export default async () => {
  return 'default exported arrow function expression'
}
Quest for Codev2.0.0
/
SIGN IN