next.js/test/e2e/app-dir/use-cache/app/(partially-static)/with-server-action/page.tsx
page.tsx18 lines230 B
import { Form } from './form'

async function action() {
  'use server'

  return 'result'
}

export default async function Page() {
  'use cache'

  return (
    <Form action={action}>
      <p>{Date.now()}</p>
    </Form>
  )
}
Quest for Codev2.0.0
/
SIGN IN