next.js/test/e2e/app-dir/actions-unused-args/app/button.tsx
button.tsx16 lines225 B
'use client'

export function Button({
  action,
  children,
}: {
  action: any
  children: React.ReactNode
}) {
  return (
    <button id="action-button" onClick={action.bind(null, 42)}>
      {children}
    </button>
  )
}
Quest for Codev2.0.0
/
SIGN IN