您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

create-error.tsx 287B

123456789101112131415
  1. export default function CreateError() {
  2. return (
  3. <div>
  4. <button
  5. onClick={() => {
  6. if (window.confirm('Cause an error?')) {
  7. throw Error('You caused an error!')
  8. }
  9. }}
  10. >
  11. Create an Error
  12. </button>
  13. </div>
  14. )
  15. }