next.js/test/production/app-dir/actions-tree-shaking/basic/app/actions.js
actions.js14 lines249 B
'use server'

export async function serverComponentAction() {
  return 'server-action'
}

export async function clientComponentAction() {
  return 'client-action'
}

export async function unusedExportedAction() {
  return 'unused-exported-action'
}
Quest for Codev2.0.0
/
SIGN IN