next.js/test/e2e/app-dir/app-static/app/button.js
button.js14 lines169 B
'use client'

export function Button() {
  return (
    <button
      onClick={() => {
        throw new Error('oof')
      }}
    >
      click me!
    </button>
  )
}
Quest for Codev2.0.0
/
SIGN IN