next.js/test/e2e/app-dir/app-external/app/action/client/page.js
page.js17 lines222 B
'use client'

import { action1 } from 'server-action-mod'

export default function Page() {
  return (
    <button
      id="action"
      onClick={() => {
        action1()
      }}
    >
      action
    </button>
  )
}
Quest for Codev2.0.0
/
SIGN IN